~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/binlog/t/binlog_killed.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:
39
39
reap;
40
40
let $rows= `select count(*) from t2  /* must be 2 or 0 */`;
41
41
 
42
 
--exec $MYSQL_BINLOG --force-if-open --start-position=135 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/kill_query_calling_sp.binlog
 
42
--exec $DRIZZLE_BINLOG --force-if-open --start-position=135 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/kill_query_calling_sp.binlog
43
43
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
44
44
eval select
45
45
(@a:=load_file("$MYSQLTEST_VARDIR/tmp/kill_query_calling_sp.binlog"))
46
46
is not null;
47
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
47
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
48
48
let $error_code= `select @a like "%#%error_code=0%" /* must return 1 or 0*/`;
49
49
let $insert_binlogged= `select @a like "%insert into%" /* must return 1 or 0 */`;
50
50
eval set @result= $rows- $error_code - $insert_binlogged;
250
250
 
251
251
# a proof the query is binlogged with an error
252
252
 
253
 
--exec $MYSQL_BINLOG --force-if-open --start-position=106 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog
 
253
--exec $DRIZZLE_BINLOG --force-if-open --start-position=106 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog
254
254
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
255
255
eval select
256
256
(@a:=load_file("$MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog"))
257
257
is not null;
258
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
258
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
259
259
let $error_code= `select @a like "%#%error_code=0%" /* must return 0*/`;
260
260
eval select $error_code /* must return 0 to mean the killed query is in */;
261
261
 
296
296
 
297
297
# a proof the query is binlogged with an error
298
298
 
299
 
--exec $MYSQL_BINLOG --force-if-open --start-position=106 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog
 
299
--exec $DRIZZLE_BINLOG --force-if-open --start-position=106 $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog
300
300
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
301
301
eval select
302
302
(@a:=load_file("$MYSQLTEST_VARDIR/tmp/binlog_killed_bug27571.binlog"))
303
303
is not null;
304
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
304
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
305
305
let $error_code= `select @a like "%#%error_code=0%" /* must return 0*/`;
306
306
eval select $error_code /* must return 0 to mean the killed query is in */;
307
307