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
If a user puts a typo like this (HEAD rather than HEADER) in their SQL
HEAD
HEADER
CREATE EXTERNAL TABLE t(c1 int) STORED AS CSV WITH HEAD ROW LOCATION 'foo.csv';
The Parser returns the somewhat confusing error sql parser error: Missing LOCATION clause in CREATE EXTERNAL TABLE statement
sql parser error: Missing LOCATION clause in CREATE EXTERNAL TABLE statement
It would be great if the message was something more "expected LOCATION, HEADER, ... got HEAD" that gave the user a hint of what was was wrong
See original suggestion posted by @tz70s in #6257 (comment)
The text was updated successfully, but these errors were encountered:
I'm going to work it
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
If a user puts a typo like this (
HEAD
rather thanHEADER
) in their SQLThe Parser returns the somewhat confusing error
sql parser error: Missing LOCATION clause in CREATE EXTERNAL TABLE statement
It would be great if the message was something more "expected LOCATION, HEADER, ... got HEAD" that gave the user a hint of what was was wrong
See original suggestion posted by @tz70s in #6257 (comment)
The text was updated successfully, but these errors were encountered: