We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
@mikeskov hi, thanks for reporting the issue, will work on it
Sorry, something went wrong.
@mikeskov hi again! fix released with version 0.26.1(https://pypi.org/project/simple-ddl-parser/), test added - https://github.com/xnuinside/simple-ddl-parser/blob/main/tests/test_hql_output_mode.py#L2203 if will be anything new - feel free to open new issue :) and thanks for report one more time!
No branches or pull requests
Describe the bug
Entering multiple key/value pairs in SERDEPROPERTIES causes parsing to fail and return empty
To Reproduce
This works:
This doesn't:
Expected behavior
Multiple key/value pairs in SERDEPROPERTIES should in the row format properties dict.
The text was updated successfully, but these errors were encountered: