~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.h

  • Committer: Monty Taylor
  • Date: 2010-05-21 06:34:45 UTC
  • mfrom: (1530.2.8)
  • mto: (1530.5.7)
  • mto: This revision was merged to the branch mainline in revision 1560.
  • Revision ID: mordred@inaugust.com-20100521063445-8isexfjpicuqhf5a
Merged fix-lcov-failure into new-valgrind-suppressions.

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);