1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

MDEV-4710 Merge Performance Schema test cases from MySQL 5.6.10

Merged all perfschema tests, except for the following:
perfschema.part_table_io
perfschema.binlog_mix perfschema.binlog_row perfschema.binlog_stmt
perfschema.statement_digest_consumers perfschema.statement_digest
privilege.inc privilege.result
This commit is contained in:
unknown
2013-07-10 15:30:17 +03:00
parent e06cc1adce
commit 7ac5a1d362
52 changed files with 726 additions and 192 deletions

View File

@@ -0,0 +1,9 @@
ALTER TABLE performance_schema.session_account_connect_attrs
ADD COLUMN foo INTEGER;
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
TRUNCATE TABLE performance_schema.session_account_connect_attrs;
ERROR HY000: Invalid performance_schema usage.
ALTER TABLE performance_schema.session_account_connect_attrs ADD INDEX test_index(ATTR_NAME);
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
CREATE UNIQUE INDEX test_index ON performance_schema.session_account_connect_attrs(ATTR_NAME);
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'