~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
DROP TABLE IF EXISTS t1;
2
2
CREATE TABLE t1 (
3
 
id INT NOT NULL
 
3
id INT NOT NULL PRIMARY KEY
4
4
, padding VARCHAR(200) NOT NULL
5
5
);
6
6
INSERT INTO t1 VALUES (1, "I love testing.");