Description
I am trying to create table in hive, but I am getting the following error
//代码占位符 FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. Cannot validate serde: org.apache.hadoop.hive.serder2.OpenCSVSerde
the command that create the table :
//代码占位符 create table csv_tab(id string,name string) row format serde 'org.apache.hadoop.hive.serder2.OpenCSVSerde' with serdeproperties("separatorChar"="\t","quoteChar"="'","escapeChar"="\\") stored as TEXTFILE;
hadoop version:2.6.0
hive version:1.2.2
please help me.