You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .ci/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Test jobs:
12
12
-`test-lin-rel-cran` - `--as-cran` on Linux, strict test for final status of `R CMD check`.
13
13
-`test-lin-dev-gcc-strict-cran` - `--as-cran` on Linux, `r-devel` built with `-enable-strict-barrier --disable-long-double`, test for compilation warnings, test for new NOTEs/WARNINGs from `R CMD check`.
14
14
-`test-lin-dev-clang-cran` - same as `gcc-strict` job but R built with `clang` and no `--enable-strict-barrier --disable-long-double` flags.
15
-
-`test-lin-ancient-cran` - Stated R dependency version (currently 3.3.0) on Linux.
15
+
-`test-lin-ancient-cran` - Stated R dependency version (currently 3.4.0) on Linux.
16
16
-`test-lin-dev-san` - `r-devel` on Linux built with `clang -fsanitize=address,undefined` (including LeakSanitizer), test for sanitizer output in tests and examples.
Description: Fast aggregation of large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of columns by group using no copies at all, list columns, friendly and fast character-separated-value read/write. Offers a natural and flexible syntax, for faster development.
Copy file name to clipboardExpand all lines: R/onAttach.R
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -39,10 +39,6 @@
39
39
else
40
40
packageStartupMessagef("This is %s. This warning should not normally occur on Windows or Linux where OpenMP is turned on by data.table's configure script by passing -fopenmp to the compiler. If you see this warning on Windows or Linux, please file a GitHub issue.\n**********", Sys.info()["sysname"])
41
41
}
42
-
if (.Call(CbeforeR340)) {
43
-
# not base::getRversion()<"3.4.0" in case the user upgrades R but does not reinstall data.table; a reasonable mistake since data.table would seem to be the latest version
44
-
packageStartupMessagef("**********\nThis data.table installation was compiled for R < 3.4.0 (Apr 2017) and is known to leak memory. Please upgrade R and reinstall data.table to fix the leak. Maintaining and testing code branches to support very old versions increases development time so please do upgrade R. We intend to bump data.table's dependency from 8 year old R 3.1.0 (Apr 2014) to 5 year old R 3.4.0 (Apr 2017).\n**********")
Copy file name to clipboardExpand all lines: inst/tests/tests.Rraw
+17-39Lines changed: 17 additions & 39 deletions
Original file line number
Diff line number
Diff line change
@@ -200,16 +200,6 @@ base_messages = list(
200
200
NULL
201
201
)
202
202
203
-
# Ensure an operation uses C-locale sorting (#3502). For test set-ups/comparisons that use base operations, which are
204
-
# susceptible to locale-specific sorting issues, but shouldn't be needed for data.table code, which always uses C sorting.
205
-
# TODO(R>=3.3.0): use order(method="radix") as a way to avoid needing this helper
206
-
with_c_collate = function(expr) {
207
-
old = Sys.getlocale("LC_COLLATE")
208
-
on.exit(Sys.setlocale("LC_COLLATE", old))
209
-
Sys.setlocale("LC_COLLATE", "C")
210
-
expr
211
-
}
212
-
213
203
##########################
214
204
.do_not_rm = ls() # objects that exist at this point should not be removed by rm_all(); e.g. test_*, base_messages, Ctest_dt_win_snprintf, prevtest, etc
0 commit comments