mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
Discover P_S tables automatically. Most of this patch is code clean-up: - removed tests and code responsible for P_S tables correctness verification - always return error from ha_perfschema::create() - install/upgrade scripts won't create P_S tables anymore
13 lines
370 B
Plaintext
13 lines
370 B
Plaintext
drop table if exists test.user_table;
|
|
"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;
|