ClickHouse/tests/queries/0_stateless/01403_datetime64_constant_arg.sql
2020-08-01 19:23:08 +03:00

6 lines
344 B
SQL

-- regression for "DB::Exception: Size of filter doesn't match size of column.."
SELECT toDateTime(fromUnixTimestamp64Micro(toInt64(0))) 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))) ts FROM numbers(2);