~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-05-26 21:49:18 UTC
  • mto: This revision was merged to the branch mainline in revision 1568.
  • Revision ID: brian@gaz-20100526214918-8kdibq48e9lnyr6t
This fixes bug 586009, increases the size of the log files so that the UNION
test doesn't hit Innodb's default limit. Increases the size of the initial
Innodb data file, and fixes one case where an empty string on error was
causing a crash on OSX.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
show create table INNODB_LOCKS;
5
5
Table   Create Table
6
6
INNODB_LOCKS    CREATE TABLE `innodb_locks` (
7
 
  `LOCK_ID` varchar(64) NOT NULL DEFAULT '',
8
 
  `LOCK_TRX_ID` varchar(64) NOT NULL DEFAULT '',
9
 
  `LOCK_MODE` varchar(64) NOT NULL DEFAULT '',
10
 
  `LOCK_TYPE` varchar(64) NOT NULL DEFAULT '',
11
 
  `LOCK_TABLE` varchar(64) NOT NULL DEFAULT '',
12
 
  `LOCK_INDEX` varchar(64) NOT NULL DEFAULT '',
 
7
  `LOCK_ID` varchar(256) NOT NULL DEFAULT '',
 
8
  `LOCK_TRX_ID` varchar(256) NOT NULL DEFAULT '',
 
9
  `LOCK_MODE` varchar(256) NOT NULL DEFAULT '',
 
10
  `LOCK_TYPE` varchar(256) NOT NULL DEFAULT '',
 
11
  `LOCK_TABLE` varchar(256) NOT NULL DEFAULT '',
 
12
  `LOCK_INDEX` varchar(256) NOT NULL DEFAULT '',
13
13
  `LOCK_SPACE` bigint NOT NULL DEFAULT '0',
14
14
  `LOCK_PAGE` bigint NOT NULL DEFAULT '0',
15
15
  `LOCK_REC` bigint NOT NULL DEFAULT '0',
16
 
  `LOCK_DATA` varchar(64) NOT NULL DEFAULT ''
 
16
  `LOCK_DATA` varchar(256) NOT NULL DEFAULT ''
17
17
) ENGINE=FunctionEngine