-
Notifications
You must be signed in to change notification settings - Fork 329
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
Support table level comment #3836
Comments
Reference: table comment parser in MySQL - https://dev.mysql.com/doc/refman/8.0/en/create-table.html |
I'm interested in this task, can you assign it to me? |
If we use /// Table options in `WITH`. All keys are lowercase.
pub options: OptionMap, |
It seems MySQL support I guess add the key |
Just recall that there is a relative field in greptimedb/src/table/src/metadata.rs Lines 655 to 657 in 777bc3b
We can consider extracting the comment from table option and storing it here. |
What problem does the new feature solve?
Currently we only have column level comment. Adding table level comment can attach some information about the table, e.g:
the table is auto-created by schemaless write from influxdb line protocol
.What does the feature do?
create table
show create table
an example table option on creation could be
Implementation challenges
tips:
The text was updated successfully, but these errors were encountered: