We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c1eb3 commit efa7e2cCopy full SHA for efa7e2c
inst/tests/tests.Rraw
@@ -20704,3 +20704,4 @@ DT = data.table(a=rep(1:3, 4), b=rep(1:2, 6))
20704
test(2301.1, DT[order(a, method="auto")], error="no support for sorting by method='auto'")
20705
test(2301.2, DT[order(a, b, decreasing=c(TRUE, FALSE))], DT[order(-a, b)])
20706
test(2301.3, DT[order(a, -b, decreasing=c(TRUE, TRUE))], error="Mixing '-' with vector decreasing")
20707
+test(2301.4, DT[order(a, -b, decreasing=c(TRUE, TRUE, FALSE))], error="decreasing= has length 3")
0 commit comments