File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 2323 + Argument ` logicalAsInt ` to ` fwrite() ` has been removed.
2424 + Argument ` autostart ` to ` fread() ` has been removed.
2525 + Argument ` in.place ` to ` droplevels ` has been removed.
26+ + It's now an error to set ` datatable.nomatch ` , which has been warning since 1.15.0.
2627
2728# data.table [ v1.17.0] ( https://github.com/Rdatatable/data.table/milestone/34 ) (20 Feb 2025)
2829
Original file line number Diff line number Diff line change 11# nocov start
22
3- .pkg.store = new.env()
4- .pkg.store $ .unsafe.done = FALSE
53.unsafe.opt = function () {
6- if (.pkg.store $ .unsafe.done ) return (invisible ())
7- val = getOption(" datatable.nomatch" )
8- if (is.null(val )) return (invisible ()) # not defined (it hasn't been defined in .onLoad since v1.12.4)
9- warningf(" Option 'datatable.nomatch' is defined but is now ignored. Please see note 11 in v1.12.4 NEWS (Oct 2019), and note 14 in v1.14.2." )
10- # leave this as warning for a long time
11- .pkg.store $ .unsafe.done = TRUE
12- invisible ()
4+ if (! is.null(getOption(" datatable.nomatch" )))
5+ stopf(" Option 'datatable.nomatch' is defined but is now ignored. Please see note 11 in v1.12.4 NEWS (Oct 2019), and note 14 in v1.14.2." )
136}
147
158.Last.updated = vector(" integer" , 1L ) # exported variable; number of rows updated by the last := or set(), #1885
You can’t perform that action at this time.
0 commit comments