~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/binlog/t/binlog_base64_flag.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:
22
22
# The binlog contains row events equivalent to:
23
23
# CREATE TABLE t1 (a int) engine = myisam
24
24
# INSERT INTO t1 VALUES (1), (1)
25
 
exec $MYSQL_BINLOG suite/binlog/std_data/bug32407.001 | $MYSQL;
 
25
exec $DRIZZLE_BINLOG suite/binlog/std_data/bug32407.001 | $MYSQL;
26
26
# The above line should succeed and t1 should contain two ones
27
27
select * from t1;
28
28
 
75
75
# mysqlbinlog should fail
76
76
--replace_regex /#[0-9][0-9][0-9][0-9][0-9][0-9] .*/<#>/   /SET \@\@session.pseudo_thread_id.*/<#>/
77
77
error 1;
78
 
exec $MYSQL_BINLOG --base64-output=never suite/binlog/std_data/bug32407.001;
 
78
exec $DRIZZLE_BINLOG --base64-output=never suite/binlog/std_data/bug32407.001;
79
79
# the above line should output the query log event and then stop
80
80
 
81
81