~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/t/innodb_trx.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-12-21 16:39:40 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20101221163940-c1pfo1jjvx7909xq
Tags: 2010.12.06-0ubuntu1
* New upstream release.
* Added libaio-dev build depend for InnoDB.
* Removed libpcre patch - applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
select * from INNODB_TRX;
4
4
 
5
5
show create table INNODB_TRX;
 
6
 
 
7
# Make sure we don't hit a bad assert() with an empty transaction
 
8
connect (con1,localhost,root,,);
 
9
connect (con2,localhost,root,,);
 
10
connection con1;
 
11
use test;
 
12
create table t1 (a int);
 
13
start transaction;
 
14
connection con2;
 
15
sleep 0.1;
 
16
select TRX_STATE,TRX_QUERY from data_dictionary.INNODB_TRX;