ClickHouse/tests/queries/0_stateless/01720_union_distinct_with_limit.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
77 B
MySQL
Raw Normal View History

2021-02-17 08:26:52 +00:00
SELECT x
FROM
(
SELECT 1 AS x
UNION DISTINCT
SELECT 1
)
LIMIT 1;