~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

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

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
DROP TABLE t1;
11
11
DROP TABLE t2;
12
12
START TRANSACTION;
13
 
DROP TABLE IF EXISTS `t1`;
 
13
DROP TABLE IF EXISTS `test`.`t1`;
14
14
COMMIT;
15
15
START TRANSACTION;
16
 
DROP TABLE IF EXISTS `t2`;
 
16
DROP TABLE IF EXISTS `test`.`t2`;
17
17
COMMIT;
18
18
START TRANSACTION;
19
19
CREATE TABLE `t2` (   `id` int NOT NULL,   `padding` varchar(200) NOT NULL,   PRIMARY KEY (`id`) ) ENGINE=InnoDB;
23
23
INSERT INTO `test`.`t2` (`id`,`padding`) VALUES (2,'I hate testing.');
24
24
COMMIT;
25
25
START TRANSACTION;
26
 
DROP TABLE `t2`;
 
26
DROP TABLE `test`.`t2`;
27
27
COMMIT;
28
28
SET GLOBAL transaction_log_truncate_debug= true;