~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/user_var-binlog.test

  • Committer: Stewart Smith
  • Date: 2008-09-15 07:13:59 UTC
  • mfrom: (383.1.21 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080915071359-f8bznznyaiqrtqxa
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Requires statement logging
2
2
-- source include/have_binlog_format_mixed_or_statement.inc
3
 
# TODO: Create row based version once $MYSQL_BINLOG has new RB version
 
3
# TODO: Create row based version once $DRIZZLE_BINLOG has new RB version
4
4
 
5
5
# Check that user variables are binlogged correctly (BUG#3875)
6
6
create table t1 (a varchar(50));
16
16
# more important than SHOW BINLOG EVENTS, mysqlbinlog (where we
17
17
# absolutely need variables names to be quoted and strings to be
18
18
# escaped).
19
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
19
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
20
20
flush logs;
21
 
--exec $MYSQL_BINLOG --short-form $MYSQLTEST_VARDIR/log/master-bin.000001 
 
21
--exec $DRIZZLE_BINLOG --short-form $MYSQLTEST_VARDIR/log/master-bin.000001 
22
22
drop table t1;
23
23
 
24
24
# End of 4.1 tests