-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-28388][SQL][TEST] Port select_implicit.sql #25152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
160 changes: 160 additions & 0 deletions
160
sql/core/src/test/resources/sql-tests/inputs/pgSQL/select_implicit.sql
This file contains hidden or 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,160 @@ | ||
| -- | ||
| -- Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group | ||
| -- | ||
| -- | ||
| -- SELECT_IMPLICIT | ||
| -- Test cases for queries with ordering terms missing from the target list. | ||
| -- This used to be called "junkfilter.sql". | ||
| -- The parser uses the term "resjunk" to handle these cases. | ||
| -- - thomas 1998-07-09 | ||
| -- https://github.com/postgres/postgres/blob/REL_12_BETA2/src/test/regress/sql/select_implicit.sql | ||
| -- | ||
|
|
||
| -- load test data | ||
| CREATE TABLE test_missing_target (a int, b int, c string, d string) using parquet; | ||
| INSERT INTO test_missing_target VALUES (0, 1, 'XXXX', 'A'); | ||
| INSERT INTO test_missing_target VALUES (1, 2, 'ABAB', 'b'); | ||
| INSERT INTO test_missing_target VALUES (2, 2, 'ABAB', 'c'); | ||
| INSERT INTO test_missing_target VALUES (3, 3, 'BBBB', 'D'); | ||
| INSERT INTO test_missing_target VALUES (4, 3, 'BBBB', 'e'); | ||
| INSERT INTO test_missing_target VALUES (5, 3, 'bbbb', 'F'); | ||
| INSERT INTO test_missing_target VALUES (6, 4, 'cccc', 'g'); | ||
| INSERT INTO test_missing_target VALUES (7, 4, 'cccc', 'h'); | ||
| INSERT INTO test_missing_target VALUES (8, 4, 'CCCC', 'I'); | ||
| INSERT INTO test_missing_target VALUES (9, 4, 'CCCC', 'j'); | ||
|
|
||
|
|
||
| -- w/ existing GROUP BY target | ||
| SELECT c, count(*) FROM test_missing_target GROUP BY test_missing_target.c ORDER BY c; | ||
|
|
||
| -- w/o existing GROUP BY target using a relation name in GROUP BY clause | ||
| SELECT count(*) FROM test_missing_target GROUP BY test_missing_target.c ORDER BY c; | ||
|
|
||
| -- w/o existing GROUP BY target and w/o existing a different ORDER BY target | ||
| -- failure expected | ||
| SELECT count(*) FROM test_missing_target GROUP BY a ORDER BY b; | ||
|
|
||
| -- w/o existing GROUP BY target and w/o existing same ORDER BY target | ||
| SELECT count(*) FROM test_missing_target GROUP BY b ORDER BY b; | ||
|
|
||
| -- w/ existing GROUP BY target using a relation name in target | ||
| SELECT test_missing_target.b, count(*) | ||
| FROM test_missing_target GROUP BY b ORDER BY b; | ||
|
|
||
| -- w/o existing GROUP BY target | ||
| SELECT c FROM test_missing_target ORDER BY a; | ||
|
|
||
| -- w/o existing ORDER BY target | ||
| SELECT count(*) FROM test_missing_target GROUP BY b ORDER BY b desc; | ||
|
|
||
| -- group using reference number | ||
| SELECT count(*) FROM test_missing_target ORDER BY 1 desc; | ||
|
|
||
| -- order using reference number | ||
| SELECT c, count(*) FROM test_missing_target GROUP BY 1 ORDER BY 1; | ||
|
|
||
| -- group using reference number out of range | ||
| -- failure expected | ||
| SELECT c, count(*) FROM test_missing_target GROUP BY 3; | ||
|
|
||
| -- group w/o existing GROUP BY and ORDER BY target under ambiguous condition | ||
| -- failure expected | ||
| SELECT count(*) FROM test_missing_target x, test_missing_target y | ||
| WHERE x.a = y.a | ||
| GROUP BY b ORDER BY b; | ||
|
|
||
| -- order w/ target under ambiguous condition | ||
| -- failure NOT expected | ||
| SELECT a, a FROM test_missing_target | ||
| ORDER BY a; | ||
|
|
||
| -- order expression w/ target under ambiguous condition | ||
| -- failure NOT expected | ||
| SELECT a/2, a/2 FROM test_missing_target | ||
| ORDER BY a/2; | ||
|
|
||
| -- group expression w/ target under ambiguous condition | ||
| -- failure NOT expected | ||
| SELECT a/2, a/2 FROM test_missing_target | ||
| GROUP BY a/2 ORDER BY a/2; | ||
|
|
||
| -- group w/ existing GROUP BY target under ambiguous condition | ||
| SELECT x.b, count(*) FROM test_missing_target x, test_missing_target y | ||
| WHERE x.a = y.a | ||
| GROUP BY x.b ORDER BY x.b; | ||
|
|
||
| -- group w/o existing GROUP BY target under ambiguous condition | ||
| SELECT count(*) FROM test_missing_target x, test_missing_target y | ||
| WHERE x.a = y.a | ||
| GROUP BY x.b ORDER BY x.b; | ||
|
|
||
| -- [SPARK-28329] SELECT INTO syntax | ||
| -- group w/o existing GROUP BY target under ambiguous condition | ||
| -- into a table | ||
| -- SELECT count(*) INTO TABLE test_missing_target2 | ||
| -- FROM test_missing_target x, test_missing_target y | ||
| -- WHERE x.a = y.a | ||
| -- GROUP BY x.b ORDER BY x.b; | ||
| -- SELECT * FROM test_missing_target2; | ||
|
|
||
|
|
||
| -- Functions and expressions | ||
|
|
||
| -- w/ existing GROUP BY target | ||
| SELECT a%2, count(b) FROM test_missing_target | ||
| GROUP BY test_missing_target.a%2 | ||
| ORDER BY test_missing_target.a%2; | ||
|
|
||
| -- w/o existing GROUP BY target using a relation name in GROUP BY clause | ||
| SELECT count(c) FROM test_missing_target | ||
| GROUP BY lower(test_missing_target.c) | ||
| ORDER BY lower(test_missing_target.c); | ||
|
|
||
| -- w/o existing GROUP BY target and w/o existing a different ORDER BY target | ||
| -- failure expected | ||
| SELECT count(a) FROM test_missing_target GROUP BY a ORDER BY b; | ||
|
|
||
| -- w/o existing GROUP BY target and w/o existing same ORDER BY target | ||
| SELECT count(b) FROM test_missing_target GROUP BY b/2 ORDER BY b/2; | ||
|
|
||
| -- w/ existing GROUP BY target using a relation name in target | ||
| SELECT lower(test_missing_target.c), count(c) | ||
| FROM test_missing_target GROUP BY lower(c) ORDER BY lower(c); | ||
|
|
||
| -- w/o existing GROUP BY target | ||
| SELECT a FROM test_missing_target ORDER BY upper(d); | ||
|
|
||
| -- w/o existing ORDER BY target | ||
| SELECT count(b) FROM test_missing_target | ||
| GROUP BY (b + 1) / 2 ORDER BY (b + 1) / 2 desc; | ||
|
|
||
| -- group w/o existing GROUP BY and ORDER BY target under ambiguous condition | ||
| -- failure expected | ||
| SELECT count(x.a) FROM test_missing_target x, test_missing_target y | ||
| WHERE x.a = y.a | ||
| GROUP BY b/2 ORDER BY b/2; | ||
|
|
||
| -- group w/ existing GROUP BY target under ambiguous condition | ||
| SELECT x.b/2, count(x.b) FROM test_missing_target x, test_missing_target y | ||
| WHERE x.a = y.a | ||
| GROUP BY x.b/2 ORDER BY x.b/2; | ||
|
|
||
| -- group w/o existing GROUP BY target under ambiguous condition | ||
| -- failure expected due to ambiguous b in count(b) | ||
| SELECT count(b) FROM test_missing_target x, test_missing_target y | ||
| WHERE x.a = y.a | ||
| GROUP BY x.b/2; | ||
|
|
||
| -- [SPARK-28329] SELECT INTO syntax | ||
| -- group w/o existing GROUP BY target under ambiguous condition | ||
| -- into a table | ||
| -- SELECT count(x.b) INTO TABLE test_missing_target3 | ||
| -- FROM test_missing_target x, test_missing_target y | ||
| -- WHERE x.a = y.a | ||
| -- GROUP BY x.b/2 ORDER BY x.b/2; | ||
| -- SELECT * FROM test_missing_target3; | ||
|
|
||
| -- Cleanup | ||
| DROP TABLE test_missing_target; | ||
| -- DROP TABLE test_missing_target2; | ||
| -- DROP TABLE test_missing_target3; | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.