ClickHouse/tests/queries/0_stateless/01403_datetime64_constant_arg.sql
2020-08-02 03:14:08 +03:00

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);