Fix test that was broken after merge with master

This commit is contained in:
Alexey Milovidov 2020-08-02 03:14:08 +03:00
parent 8e462a671a
commit 0adf8c723e
2 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
0000-00-00 00:00:00
0000-00-00 00:00:00
1970-01-01 00:00:00
1970-01-01 00:00:00

View File

@ -1,5 +1,5 @@
-- 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;
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))) ts FROM numbers(2);
SELECT toDateTime(fromUnixTimestamp64Micro(toInt64(0)), 'UTC') ts FROM numbers(2);