~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/status.test

Merge Stewart - fix bug 701468: TransactionalStorageEngine::doRollback(session, all) "all" isn't true - need to check session autocommit settings

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
SELECT (SELECT a FROM t1 LIMIT 1) x FROM t1 LIMIT 1;
116
116
SHOW SESSION STATUS LIKE 'Last_query_cost';
117
117
 
118
 
SELECT * FROM t1 a CROSS JOIN t1 b LIMIT 1;
 
118
SELECT * FROM t1 a, t1 b LIMIT 1;
119
119
SHOW SESSION STATUS LIKE 'Last_query_cost';
120
120
 
121
121
DROP TABLE t1;