~ubuntu-branches/ubuntu/trusty/drizzle/trusty-updates

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Tobias Frost
  • Date: 2012-04-04 15:12:07 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120404151207-xwsgn1xegslle4p0
Tags: 1:7.1.32-rc-1
* New upstream release.
* Plugin-filtered-replicator upstream removed and will no longer be built.
* Updating d/*install files to accommodate upstream changes from drizzle7
  to drizzle
* Added symlink in libdrizzledmessage-dev to library
* libdrizzle: soname-bump
* Rename package drizzle-plugin-performance-dictionary to shorten package name
  (due to linitan warning package-has-long-file-name)
* Debian/control: removed unused substitution variable ${shlibs:Depends} for
  -dbg and -dev packages

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
 
SET AUTOCOMMIT=0;
4
 
CREATE TABLE `test`.`t` (   `a` INT NOT NULL,   `b` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,   PRIMARY KEY (`a`) USING BTREE ) 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;