diff options
author | Shivji Kumar Jha <shivji.jha@oracle.com> | 2012-12-09 17:26:44 +0530 |
---|---|---|
committer | Shivji Kumar Jha <shivji.jha@oracle.com> | 2012-12-09 17:26:44 +0530 |
commit | 07a5b266fb783d741f1fdadb4d28b39da1db3b96 (patch) | |
tree | c720a7e37fd82dd69a41b7fb941eccb529068fa7 /mysql-test/include | |
parent | b74a229c23dd1d67c1f108cfec261e7756c86537 (diff) | |
parent | 6b3dad83c921981f1df739047136ece74a35409c (diff) | |
download | mariadb-git-07a5b266fb783d741f1fdadb4d28b39da1db3b96.tar.gz |
BUG#12359942 - REPLICATION TEST FROM ENGINE SUITE RPL_ROW_UNTIL TIMES OUT
patch to fix post push falures in pb2
bzr merge 5.1->5.5
BUG#15872504 - REMOVE MYSQL-TEST/INCLUDE/GET_BINLOG_DUMP_THREAD_ID.INC
bzr merge 5.1->5.6
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/get_binlog_dump_thread_id.inc | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mysql-test/include/get_binlog_dump_thread_id.inc b/mysql-test/include/get_binlog_dump_thread_id.inc deleted file mode 100644 index bfc8506b39e..00000000000 --- a/mysql-test/include/get_binlog_dump_thread_id.inc +++ /dev/null @@ -1,22 +0,0 @@ ---exec $MYSQL test -e "show processlist" > $MYSQLTEST_VARDIR/tmp/bl_dump_thread_id ---disable_warnings -drop table if exists t999; ---enable_warnings -# Create a table to hold the process list -create temporary table t999( - id int, - user char(255), - host char(255), - db char(255), - Command char(255), - time int, - State char(255), - info char(255) -); -# Load processlist into table, headers will create seom warnings ---disable_warnings ---replace_result $MYSQLTEST_VARDIR "." -eval LOAD DATA INFILE "$MYSQLTEST_VARDIR/tmp/bl_dump_thread_id" into table t999; ---enable_warnings -let $id = `select Id from t999 where Command="Binlog Dump"`; -drop table t999; |