-
Notifications
You must be signed in to change notification settings - Fork 316
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
Extensions to SHOW Statements for information_schema tables #3354
Labels
Milestone
Comments
The related MySQL documents:
I'll implement the extensions to the show statement for information_schema in 0.7 |
I'll implement the below show statements: SHOW CHARACTER SET
SHOW COLLATION
SHOW COLUMNS
SHOW DATABASES
SHOW FUNCTION STATUS
SHOW INDEX
SHOW OPEN TABLES
SHOW PROCEDURE STATUS
SHOW STATUS
SHOW TABLE STATUS
SHOW TABLES
SHOW TRIGGERS
SHOW VARIABLES |
3 tasks
killme2008
changed the title
Show syntax sugar for information_schema
Show statement extensions for information_schema tables
Mar 3, 2024
killme2008
changed the title
Show statement extensions for information_schema tables
Extensions to SHOW Statements for information_schema tables
Mar 3, 2024
Navicat will submit "show status" and "show table status" upon connection. |
3 tasks
3 tasks
3 tasks
mysql> show status;
Empty set (0.03 sec) I'll implement |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
What type of enhancement is this?
API improvement, User experience
What does the enhancement do?
MySQL supports
SHOW XXXX from [table]
orSHOW FULL XXX from [table]
to query information_schema, for example:We have to support these syntax sugars if we want to improve the compatibility of MySQL protocol.
Tasks:
show tables
andshow databases
executor, make them querying frominformation_schema
and supportwhere
clause such asSHOW FULL TABLES WHERE Table_type != 'VIEW'
. refactor: show tables and show databases #3423show columns
feat: impl show index and show columns #3577show table status
feat: impl show table status #4303show index
feat: impl show index and show columns #3577SHOW CHARACTER SET
feat: impl show collation and show charset statements #3753SHOW COLLATION
feat: impl show collation and show charset statements #3753show variables
.Implementation challenges
No response
The text was updated successfully, but these errors were encountered: