mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5 lines
153 B
SQL
5 lines
153 B
SQL
SELECT tuple(1) < ''; -- { serverError 27 }
|
|
SELECT tuple(1) < materialize(''); -- { serverError 386 }
|
|
SELECT (1, 2) < '(1,3)';
|
|
SELECT (1, 2) < '(1, 1)';
|