Skip to content

Commit

Permalink
[Chore](test) make withGroupByAndOrderByInSubq stable (apache#37847)
Browse files Browse the repository at this point in the history
## Proposed changes
make withGroupByAndOrderByInSubq stable
  • Loading branch information
BiteTheDDDDt authored Jul 16, 2024
1 parent 189801c commit 9e5bcf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: limit; tables: nation
SELECT foo.c, foo.regionkey FROM
(SELECT regionkey, COUNT(*) AS c FROM tpch_tiny_nation
GROUP BY regionkey ORDER BY regionkey LIMIT 2) foo
GROUP BY regionkey ORDER BY regionkey LIMIT 2) foo order by 2,1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: limit; tables: nation
SELECT foo.c, foo.regionkey FROM
(SELECT regionkey, COUNT(*) AS c FROM tpch_tiny_nation
GROUP BY regionkey ORDER BY regionkey LIMIT 2) foo
GROUP BY regionkey ORDER BY regionkey LIMIT 2) foo order by 2,1

0 comments on commit 9e5bcf6

Please sign in to comment.