~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: lbieber
  • Date: 2010-09-07 22:29:56 UTC
  • mfrom: (1747.1.3 build)
  • Revision ID: lbieber@orisndriz03-20100907222956-d60u695b7hx3zs0d
Merge Andrew - bug 597778 - Timestamp cannot reliably store leap seconds, so don't try. Leave that to datetime only
Merge Andrew - bug 621862 - Add / clean-up error messages for unireg_abort
Merge Andrew - bug 629563 - Drop the broken --mysql options and Change the --protocol option to accept 'mysql' or 'drizzle' ('mysql' currently default)

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
class Session;
44
44
struct st_ha_create_information;
45
45
typedef st_ha_create_information HA_CREATE_INFO;
46
 
class TableList;
 
46
struct TableList;
47
47
 
48
48
class Table;
49
49
typedef class Item COND;
50
50
 
 
51
int store_create_info(TableList *table_list, String *packet, bool is_if_not_exists);
 
52
 
51
53
int wild_case_compare(const CHARSET_INFO * const cs, 
52
54
                      const char *str,const char *wildstr);
53
55
 
 
56
bool drizzled_show_create(Session *session, TableList *table_list, bool is_if_not_exists);
 
57
bool mysqld_show_create_db(Session &session, SchemaIdentifier &, bool if_not_exists);
 
58
 
 
59
bool mysqld_show_column_types(Session *session);
 
60
 
54
61
int get_quote_char_for_identifier();
55
62
 
56
63
} /* namespace drizzled */