diff options
author | unknown <monty@mysql.com/narttu.mysql.fi> | 2007-01-22 21:19:56 +0200 |
---|---|---|
committer | unknown <monty@mysql.com/narttu.mysql.fi> | 2007-01-22 21:19:56 +0200 |
commit | 560049cbfa1b5ba029e35a1ce6ff49be6148bfd7 (patch) | |
tree | 59d53b2882c5c7bffc502b0bac1ed684cde0a447 /mysql-test/r/rpl_sp.result | |
parent | a043cd152da16624b74ec9ee4d259b4570ef4dcd (diff) | |
download | mariadb-git-560049cbfa1b5ba029e35a1ce6ff49be6148bfd7.tar.gz |
Change to new (after merge) error numbers
mysql-test/r/create.result:
Fixed error number
mysql-test/r/rpl_sp.result:
Fixed error number
mysql-test/r/sp.result:
Fixed error number
mysql-test/r/view.result:
Better fix for now() handling
mysql-test/t/ndb_basic.test:
Use error names instead of numbers
mysql-test/t/ndb_index_unique.test:
Use error names instead of numbers
mysql-test/t/rpl_skip_error-slave.opt:
Change to new error number
mysql-test/t/sp.test:
Change to new error number
mysql-test/t/view.test:
Better fix for now() handling
Diffstat (limited to 'mysql-test/r/rpl_sp.result')
-rw-r--r-- | mysql-test/r/rpl_sp.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/rpl_sp.result b/mysql-test/r/rpl_sp.result index e4c7336aabc..ea07a86d009 100644 --- a/mysql-test/r/rpl_sp.result +++ b/mysql-test/r/rpl_sp.result @@ -107,7 +107,7 @@ call foo4(); ERROR 23000: Duplicate entry '20' for key 'a' show warnings; Level Code Message -Error 1579 Duplicate entry '20' for key 'a' +Error 1582 Duplicate entry '20' for key 'a' select * from t2; a 20 @@ -241,7 +241,7 @@ return 10; end| do fn1(100); Warnings: -Error 1579 Duplicate entry '100' for key 'a' +Error 1582 Duplicate entry '100' for key 'a' select fn1(20); ERROR 23000: Duplicate entry '20' for key 'a' select * from t2; |