From 85651269b6186b53bae804413c76f4117fa225d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Sat, 16 May 2020 06:24:09 +0300 Subject: [PATCH] MDEV-18100: Clean up test --- mysql-test/main/custom_aggregate_functions.result | 2 ++ mysql-test/main/custom_aggregate_functions.test | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/mysql-test/main/custom_aggregate_functions.result b/mysql-test/main/custom_aggregate_functions.result index 8ad7b4b4dc0..0e73f963b45 100644 --- a/mysql-test/main/custom_aggregate_functions.result +++ b/mysql-test/main/custom_aggregate_functions.result @@ -1186,3 +1186,5 @@ common_schema.sum_ints(seq) 3 drop database common_schema; drop database another_schema; +USE test; +# End of 10.3 tests diff --git a/mysql-test/main/custom_aggregate_functions.test b/mysql-test/main/custom_aggregate_functions.test index 4d9dd0a4929..7442c7ec2ee 100644 --- a/mysql-test/main/custom_aggregate_functions.test +++ b/mysql-test/main/custom_aggregate_functions.test @@ -998,3 +998,7 @@ SELECT common_schema.sum_ints(seq) FROM (SELECT 1 seq UNION ALL SELECT 2) t; drop database common_schema; drop database another_schema; + +USE test; + +--echo # End of 10.3 tests