~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Brian Aker
  • Date: 2009-04-28 21:46:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1001.
  • Revision ID: brian@gaz-20090428214657-8vxn7n9dc6epb3zy
Renamed TABLE_SHARE to TableShare

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
  KEY *key_info;
615
615
  Table *table= table_list->table;
616
616
  handler *file= table->file;
617
 
  TABLE_SHARE *share= table->s;
 
617
  TableShare *share= table->s;
618
618
  HA_CREATE_INFO create_info;
619
619
  bool show_table_options= false;
620
620
  bitset<MAX_FIELDS> *old_bitmap;
2332
2332
                                      enum enum_schema_tables)
2333
2333
{
2334
2334
  Table *table= tables->table;
2335
 
  TABLE_SHARE *share;
 
2335
  TableShare *share;
2336
2336
  Table tbl;
2337
2337
  TableList table_list;
2338
2338
  uint32_t res= 0;
2719
2719
  {
2720
2720
    char option_buff[400],*ptr;
2721
2721
    Table *show_table= tables->table;
2722
 
    TABLE_SHARE *share= show_table->s;
 
2722
    TableShare *share= show_table->s;
2723
2723
    handler *file= show_table->file;
2724
2724
    StorageEngine *tmp_db_type= share->db_type();
2725
2725
    if (share->tmp_table == SYSTEM_TMP_TABLE)
2978
2978
  const char *wild= lex->wild ? lex->wild->ptr() : NULL;
2979
2979
  const CHARSET_INFO * const cs= system_charset_info;
2980
2980
  Table *show_table;
2981
 
  TABLE_SHARE *show_table_share;
 
2981
  TableShare *show_table_share;
2982
2982
  Field **ptr, *field, *timestamp_field;
2983
2983
  int count;
2984
2984