summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/t/table_schema.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/perfschema/t/table_schema.test')
-rw-r--r--mysql-test/suite/perfschema/t/table_schema.test5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/t/table_schema.test b/mysql-test/suite/perfschema/t/table_schema.test
index ce53c088c51..935bd667f2d 100644
--- a/mysql-test/suite/perfschema/t/table_schema.test
+++ b/mysql-test/suite/perfschema/t/table_schema.test
@@ -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 = '');