mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge remote-tracking branch 'upstream/10.4' into 10.5
This commit is contained in:
@ -70,3 +70,15 @@ insert into performance_schema.setup_objects
|
||||
select * from test.setup_objects;
|
||||
drop table test.setup_objects;
|
||||
SET sql_mode = default;
|
||||
#
|
||||
# MDEV-25325 column_comment for performance_schema tables
|
||||
#
|
||||
select column_name, column_comment
|
||||
from information_schema.columns
|
||||
where table_schema='performance_schema' and table_name='setup_objects';
|
||||
column_name column_comment
|
||||
OBJECT_TYPE Type of object to instrument.
|
||||
OBJECT_SCHEMA Schema containing the object, either the literal or % for any schema.
|
||||
OBJECT_NAME Name of the instrumented object, either the literal or % for any object.
|
||||
ENABLED Whether the object's events are instrumented or not. Can be disabled, in which case monitoring is not enabled for those objects.
|
||||
TIMED Whether the object's events are timed or not. Can be modified.
|
||||
|
Reference in New Issue
Block a user