summaryrefslogtreecommitdiff
path: root/mysql-test/main/sp.test
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2018-12-07 16:37:45 +0200
committerMonty <monty@mariadb.org>2018-12-09 22:12:24 +0200
commit5280af2b4e72e66f9b90e8e8f09e218768ca72d2 (patch)
tree07dedd80df30113be0b72851da463bb46e1ad8f4 /mysql-test/main/sp.test
parentdc91330d9823c2208ab16914aa313cde2edcb1a8 (diff)
downloadmariadb-git-5280af2b4e72e66f9b90e8e8f09e218768ca72d2.tar.gz
Cleaned up some MTR tests
- Moved tests depending on utf8 characters from create to create_utf8 - Fixed some tests in create and sp that wrongly tried to create table from non existing table on existing table. In a later patch we may first check if table exists, in which case the error message would change. - Updated results for partition_debug_tokudb
Diffstat (limited to 'mysql-test/main/sp.test')
-rw-r--r--mysql-test/main/sp.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/sp.test b/mysql-test/main/sp.test
index 4f520f321c5..721855895c7 100644
--- a/mysql-test/main/sp.test
+++ b/mysql-test/main/sp.test
@@ -2918,7 +2918,7 @@ create procedure bug4904()
begin
declare continue handler for sqlstate 'HY000' begin end;
- create table t2 as select * from t3;
+ create table not_existing_table as select * from t3;
end|
-- error 1146