From 3f619478f796eddbba6e39502fe941b285dd97b1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:00:34 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- .../suite/perfschema/r/dml_global_status.result | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 mysql-test/suite/perfschema/r/dml_global_status.result (limited to 'mysql-test/suite/perfschema/r/dml_global_status.result') diff --git a/mysql-test/suite/perfschema/r/dml_global_status.result b/mysql-test/suite/perfschema/r/dml_global_status.result new file mode 100644 index 00000000..27dd5859 --- /dev/null +++ b/mysql-test/suite/perfschema/r/dml_global_status.result @@ -0,0 +1,21 @@ +select * from performance_schema.global_status +where variable_name like 'bytes_%' limit 1; +select * from performance_schema.global_status +where variable_name='FOO'; +insert into performance_schema.global_status +set variable_name='FOO', variable_value='BAR'; +ERROR 42000: INSERT command denied to user 'root'@'localhost' for table `performance_schema`.`global_status` +update performance_schema.global_status +set variable_name='FOO', variable_value='BAR'; +ERROR 42000: UPDATE command denied to user 'root'@'localhost' for table `performance_schema`.`global_status` +delete from performance_schema.global_status +where variable_name <> 'FOO'; +ERROR 42000: DELETE command denied to user 'root'@'localhost' for table `performance_schema`.`global_status` +delete from performance_schema.global_status; +ERROR 42000: DELETE command denied to user 'root'@'localhost' for table `performance_schema`.`global_status` +LOCK TABLES performance_schema.global_status READ; +ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table `performance_schema`.`global_status` +UNLOCK TABLES; +LOCK TABLES performance_schema.global_status WRITE; +ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table `performance_schema`.`global_status` +UNLOCK TABLES; -- cgit v1.2.3