Update 02155_create_table_w_timezone.sql

This commit is contained in:
Denny Crane 2021-12-28 20:09:55 -04:00 committed by mergify-bot
parent e75e4b77e7
commit d19de98f07

View File

@ -1,8 +1,8 @@
create table 02155_t64_tz ( a DateTime64(9, America/Chicago)) Engine = Memory; -- { serverError 62 }
create table 02155_t_tz ( a DateTime(America/Chicago)) Engine = Memory; -- { serverError 62 }
create table t02155_t64_tz ( a DateTime64(9, America/Chicago)) Engine = Memory; -- { clientError 62 }
create table t02155_t_tz ( a DateTime(America/Chicago)) Engine = Memory; -- { clientError 62 }
create table 02155_t64_tz ( a DateTime64(9, 'America/Chicago')) Engine = Memory;
create table 02155_t_tz ( a DateTime('America/Chicago')) Engine = Memory;
create table t02155_t64_tz ( a DateTime64(9, 'America/Chicago')) Engine = Memory;
create table t02155_t_tz ( a DateTime('America/Chicago')) Engine = Memory;
drop table 02155_t64_tz;
drop table 02155_t_tz;
drop table t02155_t64_tz;
drop table t02155_t_tz;