mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
6 lines
358 B
SQL
6 lines
358 B
SQL
-- regression for "DB::Exception: Size of filter doesn't match size of column.."
|
|
SELECT toDateTime(fromUnixTimestamp64Micro(toInt64(0)), 'UTC') as ts FROM numbers_mt(2) WHERE ts + 1 = ts;
|
|
|
|
-- regression for "Invalid number of rows in Chunk column UInt32: expected 2, got 1."
|
|
SELECT toDateTime(fromUnixTimestamp64Micro(toInt64(0)), 'UTC') ts FROM numbers(2);
|