-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Description
Describe the bug
Entering multiple key/value pairs in SERDEPROPERTIES causes parsing to fail and return empty
To Reproduce
This works:
ddl="CREATE TABLE `x` (`a` STRING) ROW FORMAT SERDE 'my_serde' WITH SERDEPROPERTIES ( 'key1'='value1' )"
DDLParser(ddl,normalize_names=True).run(output_mode="hql")
This doesn't:
ddl="CREATE TABLE `x` (`a` STRING) ROW FORMAT SERDE 'my_serde' WITH SERDEPROPERTIES ( 'key1'='value1', 'key2'='value2' )"
DDLParser(ddl,normalize_names=True).run(output_mode="hql")
Expected behavior
Multiple key/value pairs in SERDEPROPERTIES should in the row format properties dict.
Metadata
Metadata
Assignees
Labels
No labels