mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added a test from #15641
This commit is contained in:
parent
2a37f5f687
commit
21467cf97a
21
tests/queries/0_stateless/01635_nullable_fuzz.sql
Normal file
21
tests/queries/0_stateless/01635_nullable_fuzz.sql
Normal file
@ -0,0 +1,21 @@
|
||||
SELECT
|
||||
'Nul\0able\0String)Nul\0\0ble(String)Nul\0able(String)Nul\0able(String)',
|
||||
NULL AND 2,
|
||||
'',
|
||||
number,
|
||||
NULL AS k
|
||||
FROM
|
||||
(
|
||||
SELECT
|
||||
materialize(NULL) OR materialize(-9223372036854775808),
|
||||
number
|
||||
FROM system.numbers
|
||||
LIMIT 1000000
|
||||
)
|
||||
ORDER BY
|
||||
k ASC,
|
||||
number ASC,
|
||||
k ASC
|
||||
LIMIT 1023, 1023
|
||||
SETTINGS max_bytes_before_external_sort = 1000000
|
||||
FORMAT Null;
|
Loading…
Reference in New Issue
Block a user