~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/r/rand.result

  • Committer: Brian Aker
  • Date: 2009-12-23 16:59:55 UTC
  • mfrom: (1143.4.25 transaction_log)
  • Revision ID: brian@gaz-20091223165955-l6n17ertyv48v35y
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
INSERT INTO t1 VALUES (1);
7
7
INSERT INTO t1 SELECT RAND(100)*100 FROM t1;
8
8
DROP TABLE t1;
 
9
START TRANSACTION;
9
10
DROP TABLE IF EXISTS `t1`;
 
11
COMMIT;
 
12
START TRANSACTION;
10
13
CREATE TABLE t1 ( id INT NOT NULL , PRIMARY KEY (id) );
 
14
COMMIT;
 
15
START TRANSACTION;
11
16
INSERT INTO `test`.`t1` (`id`) VALUES (1);
 
17
COMMIT;
 
18
START TRANSACTION;
12
19
INSERT INTO `test`.`t1` (`id`) VALUES (17);
 
20
COMMIT;
 
21
START TRANSACTION;
13
22
DROP TABLE `t1`;
 
23
COMMIT;
14
24
SET GLOBAL transaction_log_truncate_debug= true;