mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Merge pull request #68017 from ClickHouse/add-test-57420
Add a test for #57420
This commit is contained in:
commit
1abaf0c895
@ -0,0 +1 @@
|
||||
[(NULL,'11\01111111\011111','1111')] -2147483648 \N
|
23
tests/queries/0_stateless/03218_materialize_msan.sql
Normal file
23
tests/queries/0_stateless/03218_materialize_msan.sql
Normal file
@ -0,0 +1,23 @@
|
||||
SET enable_analyzer = 1;
|
||||
|
||||
SELECT
|
||||
materialize([(NULL, '11\01111111\011111', '1111')]) AS t,
|
||||
(t[1048576]).2,
|
||||
materialize(-2147483648),
|
||||
(t[-2147483648]).1
|
||||
GROUP BY
|
||||
materialize([(NULL, '1')]),
|
||||
'',
|
||||
(materialize((t[1023]).2), (materialize(''), (t[2147483647]).1, materialize(9223372036854775807)), (materialize(''), materialize(NULL, 2147483647, t[65535], 256)), materialize(NULL))
|
||||
; -- { serverError NUMBER_OF_ARGUMENTS_DOESNT_MATCH}
|
||||
|
||||
SELECT
|
||||
materialize([(NULL, '11\01111111\011111', '1111')]) AS t,
|
||||
(t[1048576]).2,
|
||||
materialize(-2147483648),
|
||||
(t[-2147483648]).1
|
||||
GROUP BY
|
||||
materialize([(NULL, '1')]),
|
||||
'',
|
||||
(materialize((t[1023]).2), (materialize(''), (t[2147483647]).1, materialize(9223372036854775807)), (materialize(''), materialize(NULL), materialize(2147483647), materialize(t[65535]), materialize(256)), materialize(NULL))
|
||||
;
|
Loading…
Reference in New Issue
Block a user