-
Notifications
You must be signed in to change notification settings - Fork 313
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
Adds information_schema.views #4339
Comments
Hi, I would like to work on this. Do we store the view definition statements somewhere? i checked This is what i found on mysql example link |
@lyang24 Great, thanks a lot. There is a field
Retrieving the
|
One way to obtain the
During runtime, the |
Another example to retrieve view info in greptimedb/src/catalog/src/table_source.rs Lines 135 to 143 in da0c840
|
What type of enhancement is this?
API improvement, Configuration, User experience
What does the enhancement do?
Part of #2931 #3729
Implements
information_schema.views
to provide information about views in databases.Refer to https://dev.mysql.com/doc/refman/8.4/en/information-schema-views-table.html
Implementation challenges
The implement detail notes:
information_schema.tables
for example to implement theviews
:information_schema
:greptimedb/src/catalog/src/information_schema.rs
Line 211 in da0c840
The text was updated successfully, but these errors were encountered: