~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/transaction_log/t/replace.inc

  • Committer: Jay Pipes
  • Date: 2009-10-18 15:31:51 UTC
  • mto: (1234.1.1 push) (1237.2.10 push)
  • mto: This revision was merged to the branch mainline in revision 1193.
  • Revision ID: jpipes@serialcoder-20091018153151-5ix355pnzqib5aa0
Adds functionality to handle REPLACE statements correctly in the replication
service.  REPLACE represents a DELETE of a row followed by an INSERT of new
data into the same row.

Adds a new test case to the transaction_log test case for REPLACE.

The replace test case does not pass and I'm not sure why.  Pushing up to
LP so I can have krow take a looksie...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
2
# Simple test of the transaction log for testing REPLACE command 
 
3
 
4
# We create a table then fill it with a few records and then
 
5
# issue a few REPLACE statements on it.
 
6
#
 
7
 
 
8
--disable_warnings
 
9
DROP TABLE IF EXISTS t1, t2;
 
10
--enable_warnings
 
11
 
 
12
CREATE TABLE t1 (
 
13
  id INT NOT NULL
 
14
, padding VARCHAR(200) NOT NULL
 
15
);
 
16
 
 
17
INSERT INTO t1 VALUES (1, "I love testing.");
 
18
INSERT INTO t1 VALUES (2, "I hate testing.");
 
19
 
 
20
# Should delete original and insert a new one
 
21
# with a different "padding" column value...
 
22
 
 
23
REPLACE INTO t1 VALUE (2, "I love testing.");
 
24
 
 
25
DROP TABLE t1;