~xnox/ubuntu/saucy/drizzle/merge

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/insert_multi.inc

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.2.11) (2.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20120619104649-9ij634mxm4x8pp4l
Tags: 1:7.1.36-stable-1ubuntu1
* Merge from Debian unstable. (LP: #987575)
  Remaining changes:
  - Added upstart script.
* debian/drizzle.upstart: dropped logger since upstart logs job
  output now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
2
 
# Simple test of the serial event log for multi-value INSERT statements
3
 
4
 
# We create a table and insert some records
5
 
# into it.
6
 
7
 
# We then use the transaction_reader in plugin/transaction_log/utilities to read the events.
8
 
#
9
 
 
10
 
--disable_warnings
11
 
DROP TABLE IF EXISTS t1;
12
 
--enable_warnings
13
 
 
14
 
CREATE TABLE t1 (
15
 
  id INT NOT NULL PRIMARY KEY
16
 
, padding VARCHAR(200) NOT NULL
17
 
);
18
 
 
19
 
INSERT INTO t1 VALUES (1, "I love testing."), (2, "I hate testing.");
20
 
 
21
 
DROP TABLE t1;