Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
ngrislain committed Jan 20, 2024
1 parent abe4744 commit 525d0c0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ const QUERIES: &[&str] = &[
"SELECT count(b) FROM table_1 GROUP BY CEIL(d)",
"SELECT CEIL(d) AS d_ceiled, count(b) FROM table_1 GROUP BY CEIL(d)",
"SELECT CEIL(d) AS d_ceiled, count(b) FROM table_1 GROUP BY d_ceiled",
// Test COUNT NA
"SELECT count(x), count(table_2.y) FROM table_2",
// Some WHERE and GROUP BY
"SELECT 1+SUM(a), count(b) FROM table_1 WHERE d>4 GROUP BY d",
"SELECT 1+SUM(a), count(b), d FROM table_1 GROUP BY d",
Expand Down

0 comments on commit 525d0c0

Please sign in to comment.