Skip to content

Commit b8c8f42

Browse files
committed
tweaks
1 parent 85c00f3 commit b8c8f42

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,6 @@ Authors@R: c(
9898
person("Christian", "Wia", role="ctb"),
9999
person("Elise", "Maigné", role="ctb"),
100100
person("Vincent", "Rocher", role="ctb"),
101-
person("Vijay", "Lulla", role="ctb")
101+
person("Vijay", "Lulla", role="ctb"),
102+
person("Bill", "Evans", role="ctb")
102103
)

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ rowwiseDT(
107107
108108
11. `tables()` now returns the correct size for data.tables over 2GiB, [#6607](https://github.com/Rdatatable/data.table/issues/6607). Thanks to @vlulla for the report and the PR.
109109
110-
16. Joining with incompatible column times (e.g., `Date` with `POSIXt`) now provides a clear warning, [#6605](https://github.com/Rdatatable/data.table/issues/6605). Thanks to @al-obrien for the report and @r2evans for the PR.
110+
12. Joining with incompatible column times (e.g., `Date` with `POSIXt`) now provides a clear warning, [#6605](https://github.com/Rdatatable/data.table/issues/6605). Thanks to @al-obrien for the report and @r2evans for the PR.
111111
112112
## NOTES
113113

inst/tests/tests.Rraw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20598,4 +20598,4 @@ test(2295.3, is.data.table(d2))
2059820598
test(2296, d2[x %no such operator% 1], error = '%no such operator%')
2059920599

2060020600
# #6605: Joins do not warn user when using POSc and Date comparisons
20601-
test(2297.1, data.table(a = Sys.time(), v1 = 1)[data.table(a = Sys.Date(), v2 = 2), on = "a"], output = ".+", warning = "incompatible")
20601+
test(2297.1, data.table(a = .POSIXct(20000L), v1 = 1)[data.table(a = .Date(20000L), v2 = 2), on = "a"], output = ".+", warning = "incompatible")

0 commit comments

Comments
 (0)