diff options
author | unknown <monty@donna.mysql.com> | 2001-02-13 12:39:50 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-02-13 12:39:50 +0200 |
commit | 01eff509a044abb9ccf28026ee5c41d8a59afc18 (patch) | |
tree | bb589eb1ed2f26d8db4af6466b490a3476f7e401 /mysql-test/t/backup.test | |
parent | a00ef17fdbfeb033c8a1030f3af38b9b687a505f (diff) | |
download | mariadb-git-01eff509a044abb9ccf28026ee5c41d8a59afc18.tar.gz |
Added --replace to mysqltest
Fixed that GROUP BY can take DESC
Docs/manual.texi:
Cleanups
client/mysqltest.c:
Added --replace to mysqltest
mysql-test/t/backup.test:
Fix to handle different error codes from backup table
sql-bench/crash-me.sh:
Fixed error in create_index test
sql/item_func.cc:
Cleanup
sql/sql_yacc.yy:
Fixed that GROUP BY can take DESC
Diffstat (limited to 'mysql-test/t/backup.test')
-rw-r--r-- | mysql-test/t/backup.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/backup.test b/mysql-test/t/backup.test index 17b06d73814..1bd57d68b49 100644 --- a/mysql-test/t/backup.test +++ b/mysql-test/t/backup.test @@ -4,6 +4,7 @@ connection con1; set SQL_LOG_BIN=0; drop table if exists t1; create table t1(n int); +--replace "errno = 2" "errno = X" "errno = 22" "errno = X" backup table t1 to '../bogus'; backup table t1 to '../tmp'; drop table t1; |