~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.h

  • Committer: Brian Aker
  • Date: 2009-08-17 15:34:55 UTC
  • mto: (1117.1.9 merge)
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817153455-emrlqx6cbxo9knfm
Fix for Stewart's patch (includes hack to solve MAX rows problem).

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
typedef struct st_ha_check_opt HA_CHECK_OPT;
32
32
class Table;
33
33
 
 
34
namespace drizzled { namespace message { class Table; } }
 
35
 
34
36
bool mysql_rm_table(Session *session,TableList *tables, bool if_exists,
35
37
                    bool drop_temporary);
36
38
int mysql_rm_table_part2(Session *session, TableList *tables, bool if_exists,
41
43
 
42
44
void wait_while_table_is_used(Session *session, Table *table,
43
45
                              enum ha_extra_function function);
 
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
                       Alter_info *alter_info,
 
52
                       uint32_t order_num, order_st *order, bool ignore);
44
53
bool mysql_checksum_table(Session* session, TableList* table_list,
45
54
                          HA_CHECK_OPT* check_opt);
46
55
bool mysql_check_table(Session* session, TableList* table_list,