~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/r/schema.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:
1
1
DROP SCHEMA IF EXISTS my_new_schema;
2
2
CREATE SCHEMA my_new_warnings;
3
3
DROP SCHEMA my_new_warnings;
4
 
START TRANSACTION;
 
4
SET AUTOCOMMIT=0;
5
5
CREATE SCHEMA `my_new_warnings` COLLATE utf8_general_ci;
6
6
COMMIT;
7
 
START TRANSACTION;
 
7
SET AUTOCOMMIT=0;
8
8
DROP SCHEMA `my_new_warnings`;
9
9
COMMIT;
10
10
 
11
11
Generating statements for innodb replication log
12
 
START TRANSACTION;
 
12
SET AUTOCOMMIT=0;
13
13
CREATE SCHEMA `my_new_warnings` COLLATE utf8_general_ci;
14
14
COMMIT;
15
 
START TRANSACTION;
 
15
SET AUTOCOMMIT=0;
16
16
DROP SCHEMA `my_new_warnings`;
17
17
COMMIT;
18
18
SET GLOBAL transaction_log_truncate_debug= true;