~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Lee Bieber
  • Date: 2011-01-20 18:34:37 UTC
  • mfrom: (2098.1.2 build)
  • Revision ID: kalebral@gmail.com-20110120183437-n1fk7epcx48dzoqd
add BSD copyright to win32/config.h
Merge Monty - add missing windows files
Merge Shrews - The transaction_reader utility will use "SET AUTOCOMMIT=0" instead of "START TRANSACTION" for DDL, this allows us to now merge Stewart's branch 

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
INSERT INTO t2 SELECT * FROM t1;
10
10
DROP TABLE t1;
11
11
DROP TABLE t2;
12
 
START TRANSACTION;
 
12
SET AUTOCOMMIT=0;
13
13
CREATE TABLE `test`.`t2` (   `id` INT NOT NULL,   `padding` VARCHAR(200) COLLATE utf8_general_ci NOT NULL,   PRIMARY KEY (`id`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
14
14
COMMIT;
15
15
START TRANSACTION;
16
16
INSERT INTO `test`.`t2` (`id`,`padding`) VALUES (1,'I love testing.');
17
17
INSERT INTO `test`.`t2` (`id`,`padding`) VALUES (2,'I hate testing.');
18
18
COMMIT;
19
 
START TRANSACTION;
 
19
SET AUTOCOMMIT=0;
20
20
DROP TABLE `test`.`t2`;
21
21
COMMIT;
22
22
SET GLOBAL transaction_log_truncate_debug= true;