is_column_privileges_is_mysql_test.result

来自「这个文件是windows mysql源码」· RESULT 代码 · 共 38 行

RESULT
38
字号
############################################################################### Testcases 3.2.9.2+3.2.9.3 INFORMATION_SCHEMA.SCHEMATA accessible information##############################################################################DROP DATABASE IF EXISTS db_datadict;CREATE DATABASE db_datadict;DROP   USER 'testuser1'@'localhost';CREATE USER 'testuser1'@'localhost';GRANT SELECT ON db_datadict.* TO 'testuser1'@'localhost';SELECT * FROM information_schema.column_privilegesWHERE table_schema IN ('information_schema','mysql','test')ORDER BY table_schema, table_name, column_name;GRANTEE	TABLE_CATALOG	TABLE_SCHEMA	TABLE_NAME	COLUMN_NAME	PRIVILEGE_TYPE	IS_GRANTABLESHOW DATABASES LIKE 'information_schema';Database (information_schema)information_schemaSHOW DATABASES LIKE 'mysql';Database (mysql)mysqlSHOW DATABASES LIKE 'test';Database (test)test# Establish connection testuser1 (user=testuser1)SELECT * FROM information_schema.column_privilegesWHERE table_schema IN ('information_schema','mysql','test')ORDER BY table_schema, table_name, column_name;GRANTEE	TABLE_CATALOG	TABLE_SCHEMA	TABLE_NAME	COLUMN_NAME	PRIVILEGE_TYPE	IS_GRANTABLESHOW DATABASES LIKE 'information_schema';Database (information_schema)information_schemaSHOW DATABASES LIKE 'mysql';Database (mysql)SHOW DATABASES LIKE 'test';Database (test)test# Switch to connection default and close connection testuser1DROP USER 'testuser1'@'localhost';DROP DATABASE db_datadict;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?