~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-19 08:06:53 UTC
  • mto: This revision was merged to the branch mainline in revision 2408.
  • Revision ID: olafvdspek@gmail.com-20110819080653-kvxd8zva88i9s3p1
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
bool analyze_table(Session* session, TableList* table_list);
43
43
bool optimize_table(Session* session, TableList* table_list);
44
44
 
45
 
bool is_primary_key(KeyInfo *key_info);
46
 
const char* is_primary_key_name(const char* key_name);
47
 
bool check_engine(Session *, const char *, message::Table *, HA_CREATE_INFO *);
 
45
bool is_primary_key(const char* name);
 
46
bool check_engine(Session*, const char*, message::Table*, HA_CREATE_INFO*);
48
47
void set_table_default_charset(HA_CREATE_INFO *create_info, const char *db);
49
48
} /* namespace drizzled */
50
49