使用时间轴列作为 Hive 分区字段时出现异常

Getting Exception while using Timeline column as Hive Partition Field

我正在尝试将数据从正常 table 加载到 Hive 分区 table。

这是我的正常 table 语法:

create table x(name string, date1 string);

这是我的新分区 table 语法:

create table y (name string, date1 string) partitioned by (timestamp1 string);

下面是我是如何加载数据到y的:

insert into table y PARTITION(SUBSTR(date1,0,2)) select name, date1 from x;

这是我的例外:

FAILED: ParseException line 1:39 missing ) at '(' near ',' in column name
line 1:51 cannot recognize input near '0' ',' '2' in column name

使用动态分区:

set hive.exec.dynamic.partition=true; 
set hive.exec.dynamic.partition.mode=nonstrict;

insert into table y PARTITION(timestamp1) 
select name, date1, SUBSTR(date1,0,2) as timestamp1  from x;