Skip to content

Commit

Permalink
Close: #4222
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitamikhaylov committed Apr 12, 2024
1 parent a4379d6 commit 4dad36c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Empty file.
7 changes: 7 additions & 0 deletions tests/queries/0_stateless/03126_column_not_under_group_by.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
SET allow_experimental_analyzer=1;

SELECT v.x, r.a, sum(c)
FROM (select 1 x, 2 c) AS v
ANY LEFT JOIN (SELECT 1 x, 2 a) AS r ON v.x = r.x
GROUP BY v.x; -- { serverError NOT_AN_AGGREGATE}

0 comments on commit 4dad36c

Please sign in to comment.