~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/r/innodb_lock_waits.result

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use data_dictionary;
 
2
select * from INNODB_LOCK_WAITS;
 
3
REQUESTING_TRX_ID       REQUESTED_LOCK_ID       BLOCKING_TRX_ID BLOCKING_LOCK_ID
 
4
show create table INNODB_LOCK_WAITS;
 
5
Table   Create Table
 
6
INNODB_LOCK_WAITS       CREATE TABLE `innodb_lock_waits` (
 
7
  `REQUESTING_TRX_ID` varchar(64) NOT NULL DEFAULT '',
 
8
  `REQUESTED_LOCK_ID` varchar(64) NOT NULL DEFAULT '',
 
9
  `BLOCKING_TRX_ID` varchar(64) NOT NULL DEFAULT '',
 
10
  `BLOCKING_LOCK_ID` varchar(64) NOT NULL DEFAULT ''
 
11
) ENGINE=FunctionEngine