diff options
author | unknown <monty@mysql.com> | 2004-03-31 03:32:38 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-03-31 03:32:38 +0300 |
commit | 93c70c07722d3e6edccd371e6c3a8b14d2f40750 (patch) | |
tree | 0404bd0f500145286f101ddeb518678df83896d7 /mysql-test/mysql-test-run.sh | |
parent | 2ac5a256fea5e620eccefab6636f0d29f89e56f0 (diff) | |
download | mariadb-git-93c70c07722d3e6edccd371e6c3a8b14d2f40750.tar.gz |
simple optimzation
Portability fixes
client/mysqltest.c:
Fixed that if error number 0 is included in --error, we will not generate an error message
include/mysql.h:
Portability fix
mysql-test/mysql-test-run.sh:
Portability fix
mysql-test/r/heap_btree.result:
Portability fix
mysql-test/r/rpl_error_ignored_table.result:
Portability fix
mysql-test/t/heap_btree.test:
Portability fix
mysql-test/t/rpl_error_ignored_table.test:
Portability fix
sql/sql_base.cc:
simple optimzation
sql/sql_yacc.yy:
simple optimzation
Diffstat (limited to 'mysql-test/mysql-test-run.sh')
-rw-r--r-- | mysql-test/mysql-test-run.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.sh b/mysql-test/mysql-test-run.sh index b4d5958fb50..d0ce62cdcee 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -22,6 +22,9 @@ case `uname` in SCO_SV | UnixWare | OpenUNIX ) # do nothing (Causes strange behavior) ;; + QNX) + # do nothing (avoid error message) + ;; * ) ulimit -n 1024 ;; |