-
Notifications
You must be signed in to change notification settings - Fork 752
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
feature(planner): support table statements in new planner #5907
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
Thanks for the contribution! Please review the labels and make any necessary changes. |
This pull request has merge conflicts that must be resolved before it can be merged. @andylokandy please update it 🙏. Try |
@@ -174,8 +174,8 @@ pub struct TableMeta { | |||
pub engine: String, | |||
pub engine_options: BTreeMap<String, String>, | |||
pub options: BTreeMap<String, String>, | |||
pub cluster_key: Option<String>, | |||
// The vector of cluster keys. | |||
pub current_cluster_key: Option<String>, |
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.
Hi @andylokandy
I think default_cluster_key
is better than current_cluster_key
. Because we have a default_cluster_key_id
already.
#6012
I hereby agree to the terms of the CLA available at: https://databend.rs/dev/policies/cla/
Summary
DROP TABLE
ALTER TABLE
UNDROP TABLE
RENAME TABLE
TRUNCATE TABLE
OPTIMIZE TABLE
DESCRIBE TABLE
Changelog
Related Issues
Closes #5774