mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-25325 built-in documentation for performance_schema tables
Improve documentation of performance_schema tables by appending COLUMN comments to tables. Additionally improve test coverage and update corresponding tests.
This commit is contained in:
committed by
Vicențiu Ciorbaru
parent
edde990e35
commit
528abc749e
@ -55,3 +55,8 @@ select count(*) from information_schema.columns
|
||||
|
||||
select (@count_object_columns - @count_object_unsigned) = 0;
|
||||
|
||||
# Confirm that all columns have comments
|
||||
#
|
||||
select count(*) from information_schema.columns
|
||||
where table_schema="performance_schema"
|
||||
and (column_comment is null or column_comment = '');
|
||||
|
Reference in New Issue
Block a user