diff options
author | unknown <monty@mysql.com> | 2003-12-21 19:39:32 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2003-12-21 19:39:32 +0200 |
commit | c9a87dba4a9de464065bbf4a7ec8cd7a2c03736b (patch) | |
tree | 82780d2f52e09f3ef112e35fc6f6b3e1dadc3a56 /mysql-test/r/init_connect.result | |
parent | 6e558d61cb4f945f06dc64bdb587bcc979725a8b (diff) | |
download | mariadb-git-c9a87dba4a9de464065bbf4a7ec8cd7a2c03736b.tar.gz |
Portability fixes found during 5.0 test compilation
Fixed bug in ORDER BY on a small column (Bug #2147)
Fixed error from pthread_mutex_destroy() when one had wrong errmsg file
client/mysqltest.c:
Added handling of error on query send
(Needed for init_connection.test)
mysql-test/mysql-test-run.sh:
Added tracing of mysqldump and mysqlbinlog
mysql-test/r/init_connect.result:
Updated tests
mysql-test/r/order_by.result:
Added test for bug filesort bug
mysql-test/t/init_connect-master.opt:
Added proper quoting (for Solaris and OSF)
mysql-test/t/init_connect.test:
Portability fix
mysql-test/t/order_by.test:
Added test for bug #2147 (bug in filesort)
sql/filesort.cc:
Fixed bug in filesort (Bug #2147)
sql/item.h:
Clear 'fixed' on cleanup (For prepared statements)
sql/item_func.cc:
Protect mutex destroy.
(Fixed error from pthread_mutex_destroy() when one had wrong errmsg file)
sql/log_event.cc:
Portability fix
sql/sql_class.h:
Fixed compiler warning
sql/sql_prepare.cc:
Portability fix. (Some compilers doesn't support jump over variables declared in for())
Diffstat (limited to 'mysql-test/r/init_connect.result')
-rw-r--r-- | mysql-test/r/init_connect.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/init_connect.result b/mysql-test/r/init_connect.result index 3f8e726c775..db1e72dfca9 100644 --- a/mysql-test/r/init_connect.result +++ b/mysql-test/r/init_connect.result @@ -20,5 +20,5 @@ hex(a) 616263 set GLOBAL init_connect="adsfsdfsdfs"; select @a; -ERROR HY000: Lost connection to MySQL server during query +Got one of the listed errors drop table t1; |