forked from ClickHouse/ClickHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad95846
commit e63ba06
Showing
3 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
SET allow_suspicious_low_cardinality_types=1; | ||
CREATE TABLE range_key_dictionary_source_table__fuzz_323 | ||
( | ||
`key` UInt256, | ||
`start_date` Int8, | ||
`end_date` LowCardinality(UInt256), | ||
`value` Tuple(UInt8, Array(DateTime), Decimal(9, 1), Array(Int16), Array(UInt8)), | ||
`value_nullable` UUID | ||
) | ||
ENGINE = TinyLog; | ||
INSERT INTO range_key_dictionary_source_table__fuzz_323 FORMAT Values | ||
(1, toDate('2019-05-20'), toDate('2019-05-20'), 'First', 'First'); -- { clientError CANNOT_PARSE_INPUT_ASSERTION_FAILED } | ||
|
||
|
||
CREATE TABLE complex_key_dictionary_source_table__fuzz_267 | ||
( | ||
`id` Decimal(38, 30), | ||
`id_key` Array(UUID), | ||
`value` Array(Nullable(DateTime64(3))), | ||
`value_nullable` Nullable(UUID) | ||
) | ||
ENGINE = TinyLog; | ||
INSERT INTO complex_key_dictionary_source_table__fuzz_267 FORMAT Values | ||
(1, 'key', 'First', 'First'); -- { clientError CANNOT_READ_ARRAY_FROM_TEXT } |