-
Notifications
You must be signed in to change notification settings - Fork 360
feat(datafusion): Add sqllogictest for DataFusion INSERT INTO #1887
New issue
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
base: main
Are you sure you want to change the base?
Conversation
| catalog.create_namespace(&namespace, HashMap::new()).await?; | ||
|
|
||
| // Create test tables | ||
| Self::create_unpartitioned_table(&catalog, &namespace).await?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why we don't do this using sql?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussed with @liurenjie1024 offline, that currently we don't support CREATE TABLE yet and it should be ok to move forward with the pre-created table. Plus these tables can be useful when testing CREATE EXTERNAL TABLE
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please create an issue to track the support of creating table and add a TODO comment here.
| catalog.create_namespace(&namespace, HashMap::new()).await?; | ||
|
|
||
| // Create test tables | ||
| Self::create_unpartitioned_table(&catalog, &namespace).await?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please create an issue to track the support of creating table and add a TODO comment here.
Which issue does this PR close?
INSERT INTO#1835What changes are included in this PR?
Are these changes tested?
It's a test itself