~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/binlog/t/binlog_killed_simulate.test

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#todo: introduce a suite private macro that provides numeric values
25
25
#      for some constants like the offset of the first real event
26
26
#      that is different between severs versions.
27
 
--exec $MYSQL_BINLOG --force-if-open --start-position=107 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog
 
27
--exec $DRIZZLE_BINLOG --force-if-open --start-position=107 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog
28
28
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
29
29
eval select
30
30
(@a:=load_file("$MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog"))
31
31
is not null;
32
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
32
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
33
33
let $error_code= `select @a like "%#%error_code=0%" /* must return 1 */`;
34
34
eval select $error_code /* must return 1 as query completed before got killed*/;
35
35
 
52
52
 
53
53
source include/show_binlog_events.inc;
54
54
 
55
 
--exec $MYSQL_BINLOG --force-if-open --start-position=107 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog
 
55
--exec $DRIZZLE_BINLOG --force-if-open --start-position=107 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog
56
56
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
57
57
eval select
58
58
(@a:=load_file("$MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog"))
59
59
is not null;
60
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
60
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
61
61
let $error_code= `select @a like "%#%error_code=0%" /* must return 0*/`;
62
62
eval select $error_code /* must return 0 to mean the killed query is in */;
63
63