~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merge trunk:

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
DROP TABLE t2;
12
12
DROP TABLE IF EXISTS `t1`;
13
13
DROP TABLE IF EXISTS `t2`;
14
 
CREATE TABLE `t2` (   `id` int NOT NULL,   `padding` varchar(200) NOT NULL );
 
14
CREATE TABLE `t2` (   `id` int NOT NULL,   `padding` varchar(200) NOT NULL ) ENGINE=InnoDB;
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.');