mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Add a test for #47988
This commit is contained in:
parent
f349a7d0c0
commit
863c6523a3
1
tests/queries/0_stateless/02967_fuzz_bad_cast.reference
Normal file
1
tests/queries/0_stateless/02967_fuzz_bad_cast.reference
Normal file
@ -0,0 +1 @@
|
||||
0 \N
|
10
tests/queries/0_stateless/02967_fuzz_bad_cast.sql
Normal file
10
tests/queries/0_stateless/02967_fuzz_bad_cast.sql
Normal file
@ -0,0 +1,10 @@
|
||||
DROP TABLE IF EXISTS t1__fuzz_4;
|
||||
DROP TABLE IF EXISTS t0__fuzz_29;
|
||||
|
||||
SET allow_suspicious_low_cardinality_types = 1, join_algorithm = 'partial_merge', join_use_nulls = 1;
|
||||
CREATE TABLE t1__fuzz_4 (`x` Nullable(UInt32), `y` Int64) ENGINE = MergeTree ORDER BY (x, y) SETTINGS allow_nullable_key = 1;
|
||||
CREATE TABLE t0__fuzz_29 (`x` LowCardinality(UInt256), `y` Array(Array(Date))) ENGINE = MergeTree ORDER BY (x, y);
|
||||
SELECT sum(0), NULL FROM t0__fuzz_29 FULL OUTER JOIN t1__fuzz_4 USING (x) PREWHERE NULL;
|
||||
|
||||
DROP TABLE t1__fuzz_4;
|
||||
DROP TABLE t0__fuzz_29;
|
Loading…
Reference in New Issue
Block a user