~mordred/ubuntu/maverick/drizzle/prerelease

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-09-26 16:09:02 UTC
  • mto: This revision was merged to the branch mainline in revision 1383.
  • Revision ID: mordred@inaugust.com-20100926160902-r30v5hegk16cjk22
Tags: upstream-2010.09.1794
ImportĀ upstreamĀ versionĀ 2010.09.1794

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t (a INT NOT NULL PRIMARY KEY, b VARCHAR(10));
 
2
INSERT INTO t VALUES (1, "don't");
 
3
START TRANSACTION;
 
4
CREATE TABLE `test`.`t` (   `a` INT NOT NULL,   `b` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,   PRIMARY KEY (`a`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
 
5
COMMIT;
 
6
START TRANSACTION;
 
7
INSERT INTO `test`.`t` (`a`,`b`) VALUES (1,'don''t');
 
8
COMMIT;
 
9
DROP TABLE t;
 
10
SET GLOBAL transaction_log_truncate_debug= true;