~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-02-25 05:06:21 UTC
  • mfrom: (1308 staging)
  • mto: This revision was merged to the branch mainline in revision 1311.
  • Revision ID: mordred@inaugust.com-20100225050621-1vmy8ryyo4s58vsf
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE SCHEMA data_dictionary;
 
2
use data_dictionary;
 
3
select count(*) from data_dictionary.INNODB_STATUS ;
 
4
count(*)
 
5
43
 
6
show create table INNODB_STATUS;
 
7
Table   Create Table
 
8
INNODB_STATUS   CREATE TABLE `innodb_status` (
 
9
  `VARIABLE_NAME` varchar(64) NOT NULL DEFAULT '',
 
10
  `VARIABLE_VALUE` varchar(64) NOT NULL DEFAULT ''
 
11
) ENGINE=FunctionEngine
 
12
DROP SCHEMA data_dictionary;