-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
3,850 additions
and
1,985 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -542,7 +542,6 @@ def ddl_con(ddl_backend): | |
"postgres", | ||
"risingwave", | ||
"sqlite", | ||
"trino", | ||
) | ||
), | ||
scope="session", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
ibis/backends/tests/snapshots/test_interactive/test_default_limit/trino/out.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
SELECT | ||
"t0"."id", | ||
"t0"."bool_col" | ||
FROM "functional_alltypes" AS "t0" | ||
LIMIT 11 |
5 changes: 5 additions & 0 deletions
5
ibis/backends/tests/snapshots/test_interactive/test_disable_query_limit/trino/out.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
SELECT | ||
"t0"."id", | ||
"t0"."bool_col" | ||
FROM "functional_alltypes" AS "t0" | ||
LIMIT 11 |
3 changes: 3 additions & 0 deletions
3
.../backends/tests/snapshots/test_interactive/test_interactive_execute_on_repr/trino/out.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SELECT | ||
SUM("t0"."bigint_col") AS "Sum(bigint_col)" | ||
FROM "functional_alltypes" AS "t0" |
10 changes: 10 additions & 0 deletions
10
ibis/backends/tests/snapshots/test_interactive/test_respect_set_limit/trino/out.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
SELECT | ||
* | ||
FROM ( | ||
SELECT | ||
"t0"."id", | ||
"t0"."bool_col" | ||
FROM "functional_alltypes" AS "t0" | ||
LIMIT 10 | ||
) AS "t2" | ||
LIMIT 11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 7 additions & 11 deletions
18
ibis/backends/tests/snapshots/test_sql/test_isin_bug/trino/out.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
SELECT | ||
t0.x IN ( | ||
"t0"."x" IN ( | ||
SELECT | ||
t1.x | ||
FROM ( | ||
SELECT | ||
t0.x AS x | ||
FROM t AS t0 | ||
WHERE | ||
t0.x > 2 | ||
) AS t1 | ||
) AS "InColumn(x, x)" | ||
FROM t AS t0 | ||
"t0"."x" | ||
FROM "t" AS "t0" | ||
WHERE | ||
"t0"."x" > 2 | ||
) AS "InSubquery(x)" | ||
FROM "t" AS "t0" |
Oops, something went wrong.