~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to tests/r/data_dictionary_like_info.result

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
use data_dictionary;
154
154
use data_dictionary;
155
155
create temporary table schemas(f1 char(10));
156
 
ERROR 42000: Access denied for user ''@'' to schema 'data_dictionary'
 
156
ERROR 42000: Access denied for user ''@'' to database 'data_dictionary'
157
157
use test;
158
158
create table t1(id int);
159
159
insert into t1(id) values (1);
339
339
select * from `data_dictionary`.`INDEXES` where `TABLE_NAME` = NULL;
340
340
TABLE_SCHEMA    TABLE_NAME      INDEX_NAME      IS_USED_IN_PRIMARY      IS_UNIQUE       IS_NULLABLE     KEY_LENGTH      INDEX_TYPE      INDEX_COMMENT
341
341
select * from data_dictionary.schemas where schema_name = NULL;
342
 
SCHEMA_NAME     DEFAULT_COLLATION_NAME  SCHEMA_CREATION_TIME    SCHEMA_UPDATE_TIME      SCHEMA_UUID     SCHEMA_VERSION  SCHEMA_USE_COUNT
 
342
SCHEMA_NAME     DEFAULT_COLLATION_NAME  SCHEMA_CREATION_TIME    SCHEMA_UPDATE_TIME      SCHEMA_UUID     SCHEMA_VERSION
343
343
select * from data_dictionary.tables where table_schema = NULL;
344
344
TABLE_SCHEMA    TABLE_NAME      TABLE_TYPE      TABLE_ARCHETYPE ENGINE  ROW_FORMAT      TABLE_COLLATION TABLE_CREATION_TIME     TABLE_UPDATE_TIME       TABLE_COMMENT   AUTO_INCREMENT  TABLE_UUID      TABLE_VERSION
345
345
select * from data_dictionary.tables where table_name = NULL;