1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge remote-tracking branch 'upstream/10.4' into 10.5

This commit is contained in:
Vicențiu Ciorbaru
2021-09-10 17:16:18 +03:00
189 changed files with 4443 additions and 2525 deletions

View File

@ -55,3 +55,8 @@ select count(*) into @count_object_unsigned 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 = '');