Update 01403_datetime64_constant_arg.sql

This commit is contained in:
alexey-milovidov 2020-08-01 19:23:08 +03:00 committed by GitHub
parent 8f83c262d5
commit 38deb00403
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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