mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Local merge
This commit is contained in:
@ -6,9 +6,9 @@ AND EVENT_NAME IN
|
||||
WHERE NAME LIKE "wait/synch/%")
|
||||
LIMIT 1;
|
||||
create table test.t1(a int) engine=performance_schema;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.events_waits_current;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table performance_schema.t1(a int);
|
||||
ERROR 42000: CREATE command denied to user 'root'@'localhost' for table 't1'
|
||||
drop table if exists test.ghost;
|
||||
|
@ -16,6 +16,7 @@ operation, number_of_bytes,
|
||||
substring(object_name, locate("no_index_tab", object_name)) as short_name
|
||||
from performance_schema.events_waits_history_long
|
||||
where operation not like "tell"
|
||||
and event_name like "wait/io/file/myisam/%"
|
||||
order by thread_id, event_id;
|
||||
event_name short_source operation number_of_bytes short_name
|
||||
wait/io/file/myisam/kfile mi_create.c: create NULL no_index_tab.MYI
|
||||
|
@ -152,13 +152,13 @@ before insert on performance_schema.file_instances
|
||||
for each row begin end;
|
||||
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|
||||
create table test.t1(a int) engine=PERFORMANCE_SCHEMA;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.setup_instruments;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.events_waits_current;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.file_instances;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
insert into performance_schema.setup_instruments
|
||||
set name="foo";
|
||||
ERROR 42000: INSERT command denied to user 'root'@'localhost' for table 'setup_instruments'
|
||||
@ -250,13 +250,13 @@ before insert on performance_schema.file_instances
|
||||
for each row begin end;
|
||||
ERROR 42000: Access denied for user 'pfs_user_1'@'localhost' to database 'performance_schema'
|
||||
create table test.t1(a int) engine=PERFORMANCE_SCHEMA;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.setup_instruments;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.events_waits_current;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.file_instances;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
insert into performance_schema.setup_instruments
|
||||
set name="foo";
|
||||
ERROR 42000: INSERT command denied to user 'pfs_user_1'@'localhost' for table 'setup_instruments'
|
||||
@ -348,13 +348,13 @@ before insert on performance_schema.file_instances
|
||||
for each row begin end;
|
||||
ERROR 42000: Access denied for user 'pfs_user_2'@'localhost' to database 'performance_schema'
|
||||
create table test.t1(a int) engine=PERFORMANCE_SCHEMA;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.setup_instruments;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.events_waits_current;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.file_instances;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
insert into performance_schema.setup_instruments
|
||||
set name="foo";
|
||||
ERROR 42000: INSERT command denied to user 'pfs_user_2'@'localhost' for table 'setup_instruments'
|
||||
@ -446,13 +446,13 @@ before insert on performance_schema.file_instances
|
||||
for each row begin end;
|
||||
ERROR 42000: Access denied for user 'pfs_user_3'@'localhost' to database 'performance_schema'
|
||||
create table test.t1(a int) engine=PERFORMANCE_SCHEMA;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.setup_instruments;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.events_waits_current;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
create table test.t1 like performance_schema.file_instances;
|
||||
ERROR HY000: Invalid performance_schema usage.
|
||||
ERROR HY000: Can't create table 'test.t1' (errno: 131)
|
||||
insert into performance_schema.setup_instruments
|
||||
set name="foo";
|
||||
ERROR 42000: INSERT command denied to user 'pfs_user_3'@'localhost' for table 'setup_instruments'
|
||||
|
@ -1,3 +1,4 @@
|
||||
flush status;
|
||||
SET @saved_thread_cache_size = @@global.thread_cache_size;
|
||||
set global thread_cache_size = 0;
|
||||
show variables like "thread_cache_size";
|
||||
@ -32,3 +33,7 @@ select @thread_id_increment;
|
||||
@thread_id_increment
|
||||
1
|
||||
set global thread_cache_size = @saved_thread_cache_size;
|
||||
show status like "performance_schema_thread%";
|
||||
Variable_name Value
|
||||
Performance_schema_thread_classes_lost 0
|
||||
Performance_schema_thread_instances_lost 0
|
||||
|
Reference in New Issue
Block a user