~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.h

  • Committer: Brian Aker
  • Date: 2010-12-25 00:28:49 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225002849-g73mg6ihulajis0o
First pass in refactoring of the name of my_decimal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
class Cursor;
41
41
 
42
42
namespace message { class Table; }
43
 
namespace identifier { class Table; }
 
43
class TableIdentifier;
44
44
 
45
45
int rm_table_part2(Session *session, TableList *tables, bool if_exists,
46
46
                         bool drop_temporary);
50
50
                              enum ha_extra_function function);
51
51
 
52
52
bool check_table(Session* session, TableList* table_list,
53
 
                 HA_CHECK_OPT* check_opt);
 
53
                       HA_CHECK_OPT* check_opt);
54
54
bool analyze_table(Session* session, TableList* table_list,
55
 
                   HA_CHECK_OPT* check_opt);
 
55
                         HA_CHECK_OPT* check_opt);
56
56
bool optimize_table(Session* session, TableList* table_list,
57
 
                    HA_CHECK_OPT* check_opt);
 
57
                          HA_CHECK_OPT* check_opt);
58
58
 
59
59
void write_bin_log(Session *session, const std::string &query);
60
60