~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/suite/bugs/r/rpl_bug33055.result

  • 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
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
**** On Master ****
 
8
DROP DATABASE IF EXISTS tpcb;
 
9
CREATE DATABASE tpcb;
 
10
USE tpcb;
 
11
SET BINLOG_FORMAT = 'ROW';
 
12
CREATE TABLE account (
 
13
id int,
 
14
bid int,
 
15
balance decimal(10,2),
 
16
filler blob,
 
17
PRIMARY KEY(id)
 
18
) ENGINE=Falcon;
 
19
SHOW CREATE TABLE account;
 
20
Table   Create Table
 
21
account CREATE TABLE `account` (
 
22
  `id` int(11) NOT NULL DEFAULT '0',
 
23
  `bid` int(11) DEFAULT NULL,
 
24
  `balance` decimal(10,2) DEFAULT NULL,
 
25
  `filler` blob,
 
26
  PRIMARY KEY (`id`)
 
27
) ENGINE=Falcon DEFAULT CHARSET=latin1
 
28
INSERT INTO account VALUES (1, 2, 1.2, "FRESH ACCOUNT");
 
29
INSERT INTO account VALUES (2, 5, 1.2, "FRESH ACCOUNT");
 
30
INSERT INTO account VALUES (3, 2, 1.2, "FRESH ACCOUNT");
 
31
INSERT INTO account VALUES (4, 2, 1.2, "FRESH ACCOUNT");
 
32
SELECT * FROM account;
 
33
id      bid     balance filler
 
34
1       2       1.20    FRESH ACCOUNT
 
35
2       5       1.20    FRESH ACCOUNT
 
36
3       2       1.20    FRESH ACCOUNT
 
37
4       2       1.20    FRESH ACCOUNT
 
38
**** On Slave **** 
 
39
USE tpcb;
 
40
SELECT * FROM account;
 
41
id      bid     balance filler
 
42
1       2       1.20    FRESH ACCOUNT
 
43
2       5       1.20    FRESH ACCOUNT
 
44
3       2       1.20    FRESH ACCOUNT
 
45
4       2       1.20    FRESH ACCOUNT
 
46
**** On Master **** 
 
47
UPDATE account SET balance = 3.5 WHERE id = 3;
 
48
UPDATE account SET filler = 'Updated' WHERE id = 2;
 
49
UPDATE account SET balance = 9.2, bid = 21, 
 
50
filler = 'Updated' WHERE id = 4;
 
51
SELECT * FROM account;
 
52
id      bid     balance filler
 
53
1       2       1.20    FRESH ACCOUNT
 
54
2       5       1.20    Updated
 
55
3       2       3.50    FRESH ACCOUNT
 
56
4       21      9.20    Updated
 
57
**** On Slave **** 
 
58
SELECT * FROM account;
 
59
id      bid     balance filler
 
60
1       2       1.20    FRESH ACCOUNT
 
61
2       5       1.20    Updated
 
62
3       2       3.50    FRESH ACCOUNT
 
63
4       21      9.20    Updated
 
64
**** On Master **** 
 
65
DROP DATABASE tpcb;
 
66
**** On Slave ****