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: NEWS.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,8 @@
105
105
106
106
17. `t1 - t2`, where one is an `IDate` and the other is a `Date`, are now consistent with the case where both are `IDate` or both are `Date`, [#4749](https://github.com/Rdatatable/data.table/issues/4749). Thanks @George9000 for the report and @MichaelChirico for the fix.
107
107
108
+
18. `fwrite` now allows `dec` to be the same as `sep` for edge cases where only one will be written, e.g. 0-row or 1-column tables. [#7227](https://github.com/Rdatatable/data.table/issues/7227). Thanks @MichaelChirico for the report and @venom1204 for the fix.
109
+
108
110
### NOTES
109
111
110
112
1. The following in-progress deprecations have proceeded:
dec!=sep, # sep2!=dec and sep2!=sep checked at C level when we know if list columns are present
47
+
`dec and sep must be distinct whenever both might be needed`= (!NROW(x) || NCOL(x) <=1L||dec!=sep), # sep2!=dec and sep2!=sep checked at C level when we know if list columns are present
0 commit comments