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