mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
9 lines
408 B
SQL
9 lines
408 B
SQL
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 t02155_t64_tz ( a DateTime64(9, 'America/Chicago')) Engine = Memory;
|
|
create table t02155_t_tz ( a DateTime('America/Chicago')) Engine = Memory;
|
|
|
|
drop table t02155_t64_tz;
|
|
drop table t02155_t_tz;
|