From c46d140961b4797509fc83b2d04120e179bc2431 Mon Sep 17 00:00:00 2001 From: Elena Stepanova Date: Sun, 29 Jan 2017 21:00:02 +0200 Subject: [PATCH] MDEV-11764 perfschema.table_name fails in buildbot There is only one select that returns a result set in this test. It needs to be sorted --- mysql-test/suite/perfschema/t/table_name.test | 1 + 1 file changed, 1 insertion(+) diff --git a/mysql-test/suite/perfschema/t/table_name.test b/mysql-test/suite/perfschema/t/table_name.test index a8179f2d1f8..5fb8ccd0f7f 100644 --- a/mysql-test/suite/perfschema/t/table_name.test +++ b/mysql-test/suite/perfschema/t/table_name.test @@ -31,6 +31,7 @@ INSERT INTO `sql_1` VALUES(1,'one'); --echo --echo # Verify that the tables are treated as normal tables . --echo +--sorted_result SELECT object_type, object_schema, object_name FROM performance_schema.objects_summary_global_by_type WHERE object_schema="test";