~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Stewart Smith
  • Date: 2009-05-19 04:22:01 UTC
  • mto: (991.1.9 for-brian)
  • mto: This revision was merged to the branch mainline in revision 1033.
  • Revision ID: stewart@flamingspork.com-20090519042201-gwp8gqfknmypbhfi
Put table_name into table proto in parser, and use that when creating table proto file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include <drizzled/handler_structs.h>
35
35
#include <drizzled/ha_statistics.h>
36
36
 
 
37
#include <drizzled/message/table.pb.h>
 
38
 
37
39
/* Bits to show what an alter table will do */
38
40
#include <drizzled/sql_bitmap.h>
39
41
 
1096
1098
                         int64_t table_flags);
1097
1099
bool mysql_create_table(Session *session,const char *db, const char *table_name,
1098
1100
                        HA_CREATE_INFO *create_info,
 
1101
                        drizzled::message::Table *table_proto,
1099
1102
                        Alter_info *alter_info,
1100
1103
                        bool tmp_table, uint32_t select_field_count);
1101
1104
bool mysql_create_table_no_lock(Session *session, const char *db,
1102
1105
                                const char *table_name,
1103
1106
                                HA_CREATE_INFO *create_info,
 
1107
                                drizzled::message::Table *table_proto,
1104
1108
                                Alter_info *alter_info,
1105
1109
                                bool tmp_table, uint32_t select_field_count,
1106
1110
                                bool lock_open_lock);