~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/drizzleslap.result

  • Committer: Lee Bieber
  • Date: 2010-11-07 19:34:48 UTC
  • mfrom: (1910.1.2 build)
  • Revision ID: kalebral@gmail.com-20101107193448-64kdu912qej354sh
Merge Stewart - including adapting and expanding the "differences from mysql" page from the wiki.
Merge Stewart - fix bug 668143: drizzleslap with --commit runs second iteration data load in a transaction

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
/* CON: 0 */ create table t2(foo1 varchar(32), foo2 varchar(32));
176
176
/* CON: 0 */ INSERT INTO t1 VALUES (1, 'This is a test');
177
177
/* CON: 0 */ insert into t2 values ('test', 'test2');
178
 
/* CON: 0 */ SET AUTOCOMMIT=0;
179
178
/* CON: 0 */ SHOW TABLES;
180
179
/* CON: 1 */ SET AUTOCOMMIT=0;
181
180
/* CON: 1 */ select * from t1;
201
200
/* CON: 0 */ create table t2(foo1 varchar(32), foo2 varchar(32));
202
201
/* CON: 0 */ INSERT INTO t1 VALUES (1, 'This is a test');
203
202
/* CON: 0 */ insert into t2 values ('test', 'test2');
204
 
/* CON: 0 */ SET AUTOCOMMIT=0;
205
203
/* CON: 0 */ SHOW TABLES;
206
204
/* CON: 2 */ SET AUTOCOMMIT=0;
207
205
/* CON: 2 */ select * from t1;