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