mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
4 lines
182 B
SQL
4 lines
182 B
SQL
SET send_logs_level = 'none';
|
|
SET join_default_strictness = '';
|
|
SELECT * FROM system.one INNER JOIN (SELECT number AS k FROM system.numbers) js2 ON dummy = k; -- { serverError 417 }
|