~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.h

  • Committer: Brian Aker
  • Date: 2010-05-15 01:19:45 UTC
  • Revision ID: brian@gaz-20100515011945-uxhf94vi0tzm0vq6
Rename of KEY to KeyInfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
class TableList;
36
36
typedef struct st_ha_check_opt HA_CHECK_OPT;
37
37
class Table;
38
 
typedef struct st_key KEY;
39
38
typedef struct st_ha_create_information HA_CREATE_INFO;
40
39
class AlterInfo;
41
40
class Cursor;
65
64
void write_bin_log(Session *session,
66
65
                   char const *query);
67
66
 
68
 
bool is_primary_key(KEY *key_info);
 
67
bool is_primary_key(KeyInfo *key_info);
69
68
const char* is_primary_key_name(const char* key_name);
70
69
bool check_engine(Session *, const char *, message::Table *, HA_CREATE_INFO *);
71
70
void set_table_default_charset(HA_CREATE_INFO *create_info, const char *db);