Skip to content

Commit 93b6121

Browse files
committed
add test
1 parent 733c49c commit 93b6121

File tree

1 file changed

+1
-0
lines changed
  • rust/cubestore/cubestore-sql-tests/src

1 file changed

+1
-0
lines changed

rust/cubestore/cubestore-sql-tests/src/tests.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2880,6 +2880,7 @@ async fn physical_plan_flags(service: Box<dyn SqlClient>) {
28802880
("SELECT SUM(hits) FROM s.Data WHERE (url = 'test' AND day = 'test') OR (url = 'test_1' OR day > 'test_2')", false),
28812881
("SELECT SUM(hits) FROM s.Data WHERE (url = 'test' AND day = 'test' AND category = 'test')", true),
28822882
("SELECT SUM(hits) FROM s.Data WHERE (url = 'test' AND day = 'test' AND category = 'test') OR (url = 'test_2' AND day = 'test_2' AND category = 'test_2')", true),
2883+
("SELECT SUM(hits) FROM s.Data WHERE (url = 'test' AND day = 'test' AND category = 'test') OR (url = 'test_2' AND day = 'test_2' AND category > 'test_2')", false),
28832884
("SELECT SUM(hits) FROM s.Data WHERE url IN ('test_1', 'test_2')", false),
28842885
("SELECT SUM(hits) FROM s.Data WHERE url IS NOT NULL", false),
28852886
("SELECT SUM(hits), url FROM s.Data GROUP BY url", true),

0 commit comments

Comments
 (0)