-
Notifications
You must be signed in to change notification settings - Fork 985
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List size for large data.tables #6609
Changes from 1 commit
f08502c
48ef7f9
2cf5d25
30b0ce7
e15ec87
f8b389b
40e4ac3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -766,3 +766,10 @@ if (loaded[["nanotime"]]) { | |
# respect dec=',' for nanotime, related to #6446, corresponding to tests 2281.* | ||
test(31, fwrite(data.table(as.nanotime(.POSIXct(0))), dec=',', sep=';'), output="1970-01-01T00:00:00,000000000Z") | ||
} | ||
|
||
# test for bug#6607 | ||
ben-schwen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
local({ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you're using local() to reduce the scope of what gets included in tables() right? if so I'd either
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good. I'll make these changes. |
||
DT <- as.data.table(lapply(1:15,function(i) runif(20e6))) | ||
res <- tables() | ||
data.table:::test(32, res[NAME=='DT',.(NAME,NROW,NCOL,MB)], data.table(NAME="DT",NROW=20000000L,NCOL=15L,MB=2288)) | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we like to really emphasize "this is not integer"