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

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/test-suite-dir/embedded_innodb/tests/r/basic_innodb_table_proto_table.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
show create table data_dictionary.innodb_table_definitions;
 
2
Table   Create Table
 
3
innodb_table_definitions        CREATE TABLE `innodb_table_definitions` (
 
4
  `table_name` VARBINARY(192),
 
5
  `message` BLOB,
 
6
  PRIMARY KEY (`table_name`) USING BTREE
 
7
) ENGINE=InnoDB COLLATE = binary
 
8
select * from data_dictionary.innodb_table_definitions;
 
9
table_name      message
 
10
use data_dictionary;
 
11
show tables like 'innodb%';
 
12
Tables_in_data_dictionary (innodb%)
 
13
INNODB_CONFIGURATION
 
14
INNODB_STATUS
 
15
INNODB_SYS_COLUMNS
 
16
INNODB_SYS_FIELDS
 
17
INNODB_SYS_FOREIGN
 
18
INNODB_SYS_FOREIGN_COLS
 
19
INNODB_SYS_INDEXES
 
20
INNODB_SYS_TABLES
 
21
innodb_table_definitions
 
22
use test;
 
23
create table t1 (a int primary key);
 
24
select table_name from data_dictionary.innodb_table_definitions;
 
25
table_name
 
26
test/t1
 
27
drop table t1;
 
28
select count(table_name) from data_dictionary.innodb_table_definitions;
 
29
count(table_name)
 
30
0