mariadb/mysql-test/suite/perfschema/r/pfs_upgrade_table.result
2020-03-14 09:51:36 +01:00

11 lines
332 B
Text

# Testing mysql_upgrade with TABLE performance_schema.user_table
create table test.user_table(a int);
use performance_schema;
show tables like "user_table";
Tables_in_performance_schema (user_table)
user_table
show tables like "user_table";
Tables_in_performance_schema (user_table)
user_table
use test;
drop table test.user_table;