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
Currently, Ion-hive-serde will throw an error to notify users when writing an unexpected type value into the hive table.
E.g.
Example Table DDL CREATE EXTERNAL TABLE example_ion_table( name: string ) # Example Ion file with 2 documents. Document 2 will cause the extraction to fail. {name: "ion_doc_1"} {name: 2} # Path Extractors ion.name.path_extractor = ( name ) # Table retrieves | name: string | ------------------------------------------ | "ion_doc_1" | | ERROR |
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, Ion-hive-serde will throw an error to notify users when writing an unexpected type value into the hive table.
E.g.
The text was updated successfully, but these errors were encountered: