summaryrefslogtreecommitdiff
path: root/mysql-test/suite/parts/r/alter_table.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/parts/r/alter_table.result')
-rw-r--r--mysql-test/suite/parts/r/alter_table.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/suite/parts/r/alter_table.result b/mysql-test/suite/parts/r/alter_table.result
index 53eb482d85d..b887cea36f0 100644
--- a/mysql-test/suite/parts/r/alter_table.result
+++ b/mysql-test/suite/parts/r/alter_table.result
@@ -296,7 +296,7 @@ Grants for alan@%
GRANT USAGE ON *.* TO `alan`@`%`
GRANT INSERT, CREATE, DROP ON `test`.* TO `alan`@`%`
alter table t1 convert partition p1 to table tp1;
-ERROR 42000: ALTER command denied to user 'alan'@'localhost' for table 't1'
+ERROR 42000: ALTER command denied to user 'alan'@'localhost' for table `test`.`t1`
connection default;
revoke all on test.* from alan;
grant create, insert, alter on test.* to alan;
@@ -307,7 +307,7 @@ Grants for alan@%
GRANT USAGE ON *.* TO `alan`@`%`
GRANT INSERT, CREATE, ALTER ON `test`.* TO `alan`@`%`
alter table t1 convert partition p1 to table tp1;
-ERROR 42000: DROP command denied to user 'alan'@'localhost' for table 't1'
+ERROR 42000: DROP command denied to user 'alan'@'localhost' for table `test`.`t1`
connection default;
revoke all on test.* from alan;
grant create, drop, alter on test.* to alan;
@@ -318,7 +318,7 @@ Grants for alan@%
GRANT USAGE ON *.* TO `alan`@`%`
GRANT CREATE, DROP, ALTER ON `test`.* TO `alan`@`%`
alter table t1 convert partition p1 to table tp1;
-ERROR 42000: INSERT command denied to user 'alan'@'localhost' for table 'tp1'
+ERROR 42000: INSERT command denied to user 'alan'@'localhost' for table `test`.`tp1`
connection default;
revoke all on test.* from alan;
grant insert, drop, alter on test.* to alan;
@@ -329,7 +329,7 @@ Grants for alan@%
GRANT USAGE ON *.* TO `alan`@`%`
GRANT INSERT, DROP, ALTER ON `test`.* TO `alan`@`%`
alter table t1 convert partition p1 to table tp1;
-ERROR 42000: CREATE command denied to user 'alan'@'localhost' for table 'tp1'
+ERROR 42000: CREATE command denied to user 'alan'@'localhost' for table `test`.`tp1`
connection default;
grant create, insert, drop, alter on test.* to alan;
connection alan;