~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.h

  • Committer: Brian Aker
  • Date: 2009-10-15 18:32:22 UTC
  • mfrom: (1130.3.47 memory-file-moves)
  • Revision ID: brian@gaz-20091015183222-n79fjde41epz9u6g
Merge memory

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
  Routines to drop, repair, optimize, analyze, and check a schema table
24
24
 
25
25
*/
26
 
#ifndef DRIZZLE_SERVER_SQL_TABLE_H
27
 
#define DRIZZLE_SERVER_SQL_TABLE_H
 
26
#ifndef DRIZZLED_SQL_TABLE_H
 
27
#define DRIZZLED_SQL_TABLE_H
28
28
 
29
29
class Session;
30
30
class TableList;
44
44
void wait_while_table_is_used(Session *session, Table *table,
45
45
                              enum ha_extra_function function);
46
46
 
47
 
bool mysql_alter_table(Session *session, char *new_db, char *new_name,
48
 
                       HA_CREATE_INFO *create_info,
49
 
                       drizzled::message::Table *create_proto,
50
 
                       TableList *table_list,
51
 
                       AlterInfo *alter_info,
52
 
                       uint32_t order_num, order_st *order, bool ignore);
53
47
bool mysql_checksum_table(Session* session, TableList* table_list,
54
48
                          HA_CHECK_OPT* check_opt);
55
49
bool mysql_check_table(Session* session, TableList* table_list,
101
95
                               uint32_t *key_count,
102
96
                               int select_field_count);
103
97
 
104
 
#endif /* DRIZZLE_SERVER_SQL_TABLE_H */
 
98
#endif /* DRIZZLED_SQL_TABLE_H */