I have created a table with OpenCSV Serde in Databricks below DDL :-
CREATE TABLE db_name.table_name( col1 String,
col2 String)
ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.OpenCSVSerde'
WITH SERDEPROPERTIES (
"escapeChar"="\"",
"quoteChar"="\"",
"separatorChar"=",")
LOCATION
's3://s3_loc'
TBLPROPERTIES('serialization.null.format'='');
Table is created without any issue but while trying to run below command :-
Show create table db_name.table_name
I'm getting below error message :-
AnalysisException: Failed to execute SHOW CREATE TABLE against table `db_name`.`table_name`, which is created by Hive and uses the following unsupported serde configuration SERDE: org.apache.hadoop.hive.serde2.OpenCSVSerde INPUTFORMAT: org.apache.hadoop.mapred.TextInputFormat OUTPUTFORMAT: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
Please suggest solution. Tried on Databricks version 6.4, 7.1 and 8.4.