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
Found an error when I run this DDL:
CREATE TABLE valuetable IF NOT EXISTS AS VALUES(1,'HELLO'),(12,'DATAFUSION');
Error:
Docs: https://arrow.apache.org/datafusion/user-guide/sql/ddl.html
The text was updated successfully, but these errors were encountered:
I think the right syntax is CREATE TABLE IF NOT EXISTST
❯ CREATE TABLE IF NOT EXISTS valuetable AS VALUES(1,'HELLO'),(12,'DATAFUSION'); 0 rows in set. Query took 0.003 seconds.
Sorry, something went wrong.
CREATE [OR REPLACE] TABLE [IF NOT EXISTS] table_name AS [SELECT | VALUES LIST];
Doc is right, you have missed table_name.
table_name
I think the problem is with this example from https://arrow.apache.org/datafusion/user-guide/sql/ddl.html
CREATE TABLE IF NOT EXISTS
Successfully merging a pull request may close this issue.
Describe the bug
Found an error when I run this DDL:
Error:
Docs: https://arrow.apache.org/datafusion/user-guide/sql/ddl.html
The text was updated successfully, but these errors were encountered: