mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
0324770773
sed -r -i \ -e 's/SELECT $/SELECT/' \ -e 's/SELECT DISTINCT $/SELECT DISTINCT/' \ -e 's/WITH $/WITH/' \ # zero matches, new test will be added -e 's/ARRAY JOIN $/ARRAY JOIN/' \ -e 's/GROUP BY $/GROUP BY/' \ -e 's/ORDER BY $/ORDER BY/' \ -e 's/LIMIT ([0-9]+) BY $/LIMIT \1 BY/' \ # zero matches, new test will be added tests/queries/*/*.sql \ tests/queries/*/*.reference (With except for tests/queries/0_stateless/00751_default_databasename_for_view.reference)
15 lines
333 B
SQL
15 lines
333 B
SQL
SELECT sum(toNullable('a') IN 'a');
|
|
SELECT countIf(number, toNullable('a') IN ('a', 'b')) FROM numbers(100);
|
|
|
|
SELECT
|
|
uniqExact(x) AS u,
|
|
uniqExactIf(x, name = 'a') AS ue,
|
|
uniqExactIf(x, name IN ('a', 'b')) AS ui
|
|
FROM
|
|
(
|
|
SELECT
|
|
toNullable('a') AS name,
|
|
arrayJoin(range(10)) AS x
|
|
)
|
|
WHERE name = 'a';
|