~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/extra/rpl_tests/rpl_truncate.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright 2006 MySQL. All rights reserved.
 
3
#
 
4
# Test to check for the different version of truncating a table.
 
5
# The statements are "TRUNCATE tbl" and "DELETE FROM tbl". We check
 
6
# the behaviour of each possible value for BINLOG_FORMAT.
 
7
#
 
8
# Author(s): Mats Kindahl
 
9
 
 
10
--source include/master-slave.inc
 
11
 
 
12
let $format = STATEMENT;
 
13
let $stmt   = TRUNCATE TABLE;
 
14
--source extra/rpl_tests/rpl_truncate_helper.test
 
15
 
 
16
let $format = MIXED;
 
17
let $stmt   = TRUNCATE TABLE;
 
18
--source extra/rpl_tests/rpl_truncate_helper.test
 
19
 
 
20
let $format = ROW;
 
21
let $stmt   = TRUNCATE TABLE;
 
22
--source extra/rpl_tests/rpl_truncate_helper.test
 
23
 
 
24
let $format = STATEMENT;
 
25
let $stmt   = DELETE FROM;
 
26
--source extra/rpl_tests/rpl_truncate_helper.test
 
27
 
 
28
let $format = MIXED;
 
29
let $stmt   = DELETE FROM;
 
30
--source extra/rpl_tests/rpl_truncate_helper.test
 
31
 
 
32
let $format = ROW;
 
33
let $stmt   = DELETE FROM;
 
34
--source extra/rpl_tests/rpl_truncate_helper.test
 
35