Skip to content

Commit c33563e

Browse files
Another test with multiple keys
1 parent 6485a7a commit c33563e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

inst/tests/tests.Rraw

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20694,3 +20694,5 @@ if (test_bit64) {
2069420694
DT = data.table(a=1:2, key='a')
2069520695
test(2301.1, DT[, .N, by=.(b=rev(a))], data.table(b=2:1, N=1L))
2069620696
test(2301.2, DT[, .(N=1L), by=.(b=rev(a))], data.table(b=2:1, N=1L)) # ensure no interaction with GForce
20697+
DT = data.table(a=2:3, b=1:0, key=c('a', 'b'))
20698+
test(2301.3, DT[, .N, by=.(ab=a^b, d=c(1L, 1L))], data.table(ab=c(2, 1), d=1L, N=1L))

0 commit comments

Comments
 (0)