~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/embedded_quotes.test

  • Committer: lbieber
  • Date: 2010-09-23 15:49:15 UTC
  • mfrom: (1788.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100923154915-mshh9pwln0igdwrn
Merge Brian - Rollup patch of enum + style on varchar. This modifies enum to always being the same value.
Merge Stewart - Fix embedded_innodb plugin now that TIMESTAMP is 8 bytes. 
Merge Shrews - fix bug 643630 -  Transaction_reader not handling CHAR values that include quotes properly

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Tests for properly escaping embedded quotes when reading from the transaction log
 
3
#
 
4
 
 
5
CREATE TABLE t (a INT NOT NULL PRIMARY KEY, b VARCHAR(10));
 
6
 
 
7
INSERT INTO t VALUES (1, "don't");
 
8
 
 
9
# Read in the transaction.log.
 
10
 
 
11
--exec ../drizzled/message/transaction_reader var/master-data/transaction.log
 
12
 
 
13
DROP TABLE t;
 
14
 
 
15
# Truncate the log file to reset for the next test
 
16
--source ../plugin/transaction_log/tests/t/truncate_log.inc