Skip to content

Commit ffde66d

Browse files
non-update-join test
1 parent de0cfb4 commit ffde66d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

inst/tests/tests.Rraw

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21143,7 +21143,10 @@ class(DF2) = c("tbl_df", "tbl", "data.frame")
2114321143

2114421144
test(2316.1, DT1[DT2, on='a', c := i.c]$c, 3)
2114521145
test(2316.2, DT1[DT2, on='a', c2 := x.a + i.c]$c2, 4)
21146-
test(2316.3, DT1[DF1, on='a', d := i.d]$d, 4)
21147-
test(2316.4, DT1[DF1, on='a', d2 := x.a + i.d]$d2, 5)
21148-
test(2316.5, DT1[DF2, on='a', e := i.e]$e, 5)
21149-
test(2316.6, DT1[DF2, on='a', e2 := x.a + i.e]$e2, 6)
21146+
test(2316.3, DT1[DT2, on='a', .(c = x.a + i.c)]$c, 4)
21147+
test(2316.4, DT1[DF1, on='a', d := i.d]$d, 4)
21148+
test(2316.5, DT1[DF1, on='a', d2 := x.a + i.d]$d2, 5)
21149+
test(2316.6, DT1[DF1, on='a', .(d = x.a + i.d)]$d, 5)
21150+
test(2316.7, DT1[DF2, on='a', e := i.e]$e, 5)
21151+
test(2316.8, DT1[DF2, on='a', e2 := x.a + i.e]$e2, 6)
21152+
test(2316.9, DT1[DF2, on='a', .(e = x.a + i.e)]$e, 6)

0 commit comments

Comments
 (0)