From 12807651f1afef5b699256e5f0737d679500bada Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 21 Jun 2007 23:29:14 +0200 Subject: [PATCH] select_ndb_apply_status.inc: new support file that I missed during last check ing, sorry mysql-test/include/select_ndb_apply_status.inc: new support file that I missed during last check ing, sorry --- mysql-test/include/select_ndb_apply_status.inc | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mysql-test/include/select_ndb_apply_status.inc diff --git a/mysql-test/include/select_ndb_apply_status.inc b/mysql-test/include/select_ndb_apply_status.inc new file mode 100644 index 00000000000..a676b7cfb06 --- /dev/null +++ b/mysql-test/include/select_ndb_apply_status.inc @@ -0,0 +1,13 @@ +################################################## +# Author: Jeb +# Date: 2007/04 +# Purpose: To select out log name, start and end +# positions from ndb_apply_status table +################################################## +--replace_column 1 2 3 +select @log_name:=log_name, @start_pos:=start_pos, @end_pos:=end_pos + from mysql.ndb_apply_status; +--let $start_pos = `select @start_pos` +--let $end_pos = `select @end_pos` +--let $log_name = `select @log_name` +