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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

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