Hi All,
I am using cloudera 4.3.0. (System Config:-iIntel i3 Processor with 8GB RAM)Trying to create a Partitioning in Hive. Below is the detail:-
CREATE TABLE partitioned_user(
firstname VARCHAR(64),
lastname VARCHAR(64),
address STRING,
city VARCHAR(64),
post STRING,
phone1 VARCHAR(64),
phone2 STRING,
email STRING,
web STRING
)
PARTITIONED BY (country VARCHAR(64), state VARCHAR(64))
STORED AS SEQUENCEFILE;
But getting error as "FAILED: ParseException line 2:10 cannot recognize input near 'VARCHAR' '(' '64' in column type".
Can anyone please assist.
Thank You.