~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/serial_event_log/r/update.result

  • Committer: Joe Daly
  • Date: 2009-06-09 02:18:29 UTC
  • mto: (1039.5.13 replication)
  • mto: This revision was merged to the branch mainline in revision 1106.
  • Revision ID: skinny.moey@gmail.com-20090609021829-esxkfr066duqbia2
simple update and insert tests for bin log

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
CREATE TABLE t1 (id INT NOT NULL, data INT);
 
3
INSERT INTO t1 VALUES (1, 1), (2, 2), (3, 3);
 
4
UPDATE t1 SET data = 9 WHERE id = 2;
 
5
/*  */
 
6
/* SID: 1 XID: 0 */ DROP TABLE IF EXISTS t1;
 
7
/*  */
 
8
/* SID: 1 XID: 0 */ CREATE TABLE t1 (id INT NOT NULL, data INT);
 
9
/*  */
 
10
/* SID: 1 XID: 3 */ INSERT INTO `test`.`t1` (`id`, `data`) VALUES ("1", "1");
 
11
/*  */
 
12
/* SID: 1 XID: 3 */ INSERT INTO `test`.`t1` (`id`, `data`) VALUES ("2", "2");
 
13
/*  */
 
14
/* SID: 1 XID: 3 */ INSERT INTO `test`.`t1` (`id`, `data`) VALUES ("3", "3");
 
15
/*  */
 
16
/* SID: 1 XID: 4 */ UPDATE `test`.`t1` SET  WHERE id = 2; 
 
17