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
test(2297.03, y[x, on=.(c == a, d == a), verbose=TRUE], data.table(c=1L, d=1L), output="Coercing .*a .*no fractions.* to type integer.*Coercing .*c .*no fractions.* to type integer")
20621
20621
test(2297.04, y[x, on=.(d == a, c == a), verbose=TRUE], data.table(c=1L, d=1L), output="Coercing .*a .*no fractions.* to type integer.*Coercing .*c .*no fractions.* to type integer")
20622
20622
# dates
20623
-
d_int = .Date(1L)
20624
-
d_dbl = .Date(1)
20623
+
d_int = `class<-`(1L, "Date") # TODO: update to .Date on R 3.5
20624
+
d_dbl = `class<-`(1, "Date")
20625
20625
x = data.table(a=d_int)
20626
20626
y = data.table(c=d_int, d=d_dbl)
20627
20627
test(2297.11, y[x, on=.(c == a, d == a)], data.table(c=d_int, d=d_int))
0 commit comments