diff options
author | unknown <guilhem@mysql.com> | 2003-09-29 22:56:31 +0200 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2003-09-29 22:56:31 +0200 |
commit | 4e24aff59c1c4e8b292d462d90b6a55affb90334 (patch) | |
tree | afd13aa649c6ccc493bf2549ec8425952c1a436f /mysql-test/r/drop_temp_table.result | |
parent | 55dc3dcb82dc13b182c1b44006ec3bde6b83af18 (diff) | |
download | mariadb-git-4e24aff59c1c4e8b292d462d90b6a55affb90334.tar.gz |
fix for a random test failure on hpux/ia64
(a missing synchronization in the test)
mysql-test/r/drop_temp_table.result:
result update
mysql-test/t/drop_temp_table.test:
synchronize to be sure that the ending connection has finished binlogging.
Diffstat (limited to 'mysql-test/r/drop_temp_table.result')
-rw-r--r-- | mysql-test/r/drop_temp_table.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/drop_temp_table.result b/mysql-test/r/drop_temp_table.result index 385a3fb6e5c..6b18b54335d 100644 --- a/mysql-test/r/drop_temp_table.result +++ b/mysql-test/r/drop_temp_table.result @@ -2,10 +2,17 @@ reset master; create database `drop-temp+table-test`; use `drop-temp+table-test`; create temporary table `table:name` (a int); +select get_lock("a",10); +get_lock("a",10) +1 +select get_lock("a",10); +get_lock("a",10) +1 show binlog events; Log_name Pos Event_type Server_id Orig_log_pos Info master-bin.001 4 Start 1 4 Server ver: VERSION, Binlog ver: 3 master-bin.001 79 Query 1 79 use `test`; create database `drop-temp+table-test` master-bin.001 152 Query 1 152 use `drop-temp+table-test`; create temporary table `table:name` (a int) master-bin.001 246 Query 1 246 use `drop-temp+table-test`; DROP /*!40005 TEMPORARY */ TABLE `drop-temp+table-test`.`table:name` +master-bin.001 365 Query 1 365 use `drop-temp+table-test`; DO RELEASE_LOCK("a") drop database `drop-temp+table-test`; |