mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
7ac5a1d362
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
15 lines
521 B
Text
15 lines
521 B
Text
--source include/not_embedded.inc
|
|
--source include/have_perfschema.inc
|
|
|
|
-- error ER_DBACCESS_DENIED_ERROR
|
|
ALTER TABLE performance_schema.session_connect_attrs
|
|
ADD COLUMN foo INTEGER;
|
|
|
|
-- error ER_WRONG_PERFSCHEMA_USAGE
|
|
TRUNCATE TABLE performance_schema.session_connect_attrs;
|
|
|
|
-- error ER_DBACCESS_DENIED_ERROR
|
|
ALTER TABLE performance_schema.session_connect_attrs ADD INDEX test_index(ATTR_NAME);
|
|
|
|
-- error ER_DBACCESS_DENIED_ERROR
|
|
CREATE UNIQUE INDEX test_index ON performance_schema.session_connect_attrs(ATTR_NAME);
|