~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/show_check.result

  • Committer: lbieber
  • Date: 2010-10-06 16:34:16 UTC
  • mfrom: (1816.1.3 build)
  • Revision ID: lbieber@orisndriz08-20101006163416-ea0sl59qgpglk21y
Merge Monty - Change the requirement from either libinnodb to libhaildb. Also, tied it to version 2.2
Merge Andrew - fix bug 650935: remove --compress from all clients
Merge Andrew - fix bug 653471: Add -A to drizzle client
Merge Travis - 621861 = To change C structs to C++ classes in Drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
show index from t1;
28
28
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
29
29
def     data_dictionary show_indexes    SHOW_INDEXES    Table   Table   8       1024    2       N       4097    0       45
30
 
def     data_dictionary show_indexes    SHOW_INDEXES    Unique  Unique  8       1       3       N       4097    0       63
 
30
def     data_dictionary show_indexes    SHOW_INDEXES    Unique  Unique  8       20      3       N       4097    0       45
31
31
def     data_dictionary show_indexes    SHOW_INDEXES    Key_name        Key_name        8       1024    7       N       4097    0       45
32
 
def     data_dictionary show_indexes    SHOW_INDEXES    Seq_in_index    Seq_in_index    5       21      1       N       36865   0       63
 
32
def     data_dictionary show_indexes    SHOW_INDEXES    Seq_in_index    Seq_in_index    5       20      1       N       36865   0       63
33
33
def     data_dictionary show_indexes    SHOW_INDEXES    Column_name     Column_name     8       1024    1       N       4097    0       45
34
34
Table   Unique  Key_name        Seq_in_index    Column_name
35
35
t1      YES     PRIMARY 1       a
65
65
Variable_name   Value
66
66
show table status from test like "this_doesn't_exists%";
67
67
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
68
 
def     data_dictionary show_table_status       SHOW_TABLE_STATUS       Session Session 5       21      0       N       36865   0       63
 
68
def     data_dictionary show_table_status       SHOW_TABLE_STATUS       Session Session 5       20      0       N       36865   0       63
69
69
def     data_dictionary show_table_status       SHOW_TABLE_STATUS       Schema  Schema  8       1024    0       N       4097    0       45
70
70
def     data_dictionary show_table_status       SHOW_TABLE_STATUS       Name    Name    8       1024    0       N       4097    0       45
71
71
def     data_dictionary show_table_status       SHOW_TABLE_STATUS       Type    Type    8       1024    0       N       4097    0       45
181
181
  `b` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL,
182
182
  KEY `b` (`b`)
183
183
) ENGINE=MyISAM ROW_FORMAT='dynamic' COMMENT='test' COLLATE = utf8_general_ci
184
 
ALTER TABLE t1 COMMENT="", ROW_FORMAT=default;
 
184
ALTER TABLE t1 COMMENT="", ROW_FORMAT='default';
185
185
show create table t1;
186
186
Table   Create Table
187
187
t1      CREATE TEMPORARY TABLE `t1` (
447
447
show index from t1;
448
448
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
449
449
def     data_dictionary show_indexes    SHOW_INDEXES    Table   Table   8       1024    2       N       4097    0       45
450
 
def     data_dictionary show_indexes    SHOW_INDEXES    Unique  Unique  8       1       3       N       4097    0       63
 
450
def     data_dictionary show_indexes    SHOW_INDEXES    Unique  Unique  8       20      3       N       4097    0       45
451
451
def     data_dictionary show_indexes    SHOW_INDEXES    Key_name        Key_name        8       1024    7       N       4097    0       45
452
 
def     data_dictionary show_indexes    SHOW_INDEXES    Seq_in_index    Seq_in_index    5       21      1       N       36865   0       63
 
452
def     data_dictionary show_indexes    SHOW_INDEXES    Seq_in_index    Seq_in_index    5       20      1       N       36865   0       63
453
453
def     data_dictionary show_indexes    SHOW_INDEXES    Column_name     Column_name     8       1024    6       N       4097    0       45
454
454
Table   Unique  Key_name        Seq_in_index    Column_name
455
455
t1      YES     PRIMARY 1       field1
470
470
) ENGINE=DEFAULT COLLATE = utf8_general_ci
471
471
DROP TABLE t1;
472
472
SHOW TABLES FROM non_existing_database;
473
 
ERROR 42000: Unknown schema 'non_existing_database'
 
473
ERROR 42000: Unknown database 'non_existing_database'
474
474
End of 4.1 tests
475
475
SHOW TABLES FROM no_such_database;
476
 
ERROR 42000: Unknown schema 'no_such_database'
 
476
ERROR 42000: Unknown database 'no_such_database'
477
477
SHOW COLUMNS FROM no_such_table;
478
 
ERROR 42S02: Unknown table 'test.no_such_table'
 
478
ERROR 42S02: Table 'test.no_such_table' doesn't exist
479
479
show variables like 'myisam_recover_options';
480
480
Variable_name   Value
481
481
End of 5.0 tests
502
502
drop table `été`;
503
503
show columns from `#mysql50#????????`;
504
504
Got one of the listed errors
505
 
show innodb status;
506
 
ERROR HY000: Engine status is now stored in the data_dictionary tables, please use these instead.
507
505
End of 5.1 tests