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
CREATE EXTERNAL TABLE ... OPTIONS
While reviewing https://github.com/apache/datafusion/pull/10404/files I could not find documentation on what the syntax / available settings are for the OPTIONS clause
OPTIONS
For example there are generic options like
CREATE EXTERNAL TABLE .... OPTIONS( NULL_VALUE 'NAN', )
And then there are format specific options like (the newly added):
CREATE EXTERNAL TABLE .... OPTIONS( NULL_VALUE 'NAN', 'format.has_header' 'true' )
Neither appears to be documented
It would be great (as another PR) if we can document them similarly to how @devinjdangelo documented the write options:
https://datafusion.apache.org/user-guide/sql/write_options.html#available-options
With a section for the generic options that apply to all formats and then a list of options for each specific format
No response
The text was updated successfully, but these errors were encountered:
CREATE EXTERNAL TABLE
HEADER ROW
DELIMITER
COMPRESSION
No branches or pull requests
Is your feature request related to a problem or challenge?
While reviewing https://github.com/apache/datafusion/pull/10404/files I could not find documentation on what the syntax / available settings are for the
OPTIONS
clauseFor example there are generic options like
CREATE EXTERNAL TABLE .... OPTIONS( NULL_VALUE 'NAN', )
And then there are format specific options like (the newly added):
Neither appears to be documented
Describe the solution you'd like
It would be great (as another PR) if we can document them similarly to how @devinjdangelo documented the write options:
https://datafusion.apache.org/user-guide/sql/write_options.html#available-options
With a section for the generic options that apply to all formats and then a list of options for each specific format
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: