Update tests/queries/0_stateless/25402_fail_on_invalid_having.sql

This commit is contained in:
Ilya Yatsishin 2023-03-27 13:47:35 +02:00 committed by GitHub
parent 679fe4c9cd
commit 65c4961769
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1 @@
SELECT a, sum(b) FROM (SELECT 1 AS a, 1 AS b, 0 AS c) GROUP BY a HAVING c -- {{ serverError NOT_AN_AGGREGATE}}
SELECT a, sum(b) FROM (SELECT 1 AS a, 1 AS b, 0 AS c) GROUP BY a HAVING c SETTINGS allow_experimental_analyzer=1 -- {{ serverError NOT_AN_AGGREGATE}}