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');
179
178
/* CON: 0 */ SHOW TABLES;
180
179
/* CON: 1 */ SET AUTOCOMMIT=0;
181
180
/* CON: 1 */ select * from t1;