mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 14:42:02 +00:00
9 lines
402 B
SQL
9 lines
402 B
SQL
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 02155_t64_tz ( a DateTime64(9, 'America/Chicago')) Engine = Memory;
|
|
create table 02155_t_tz ( a DateTime('America/Chicago')) Engine = Memory;
|
|
|
|
drop table 02155_t64_tz;
|
|
drop table 02155_t_tz;
|