~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Brian Aker
  • Date: 2009-11-26 18:50:02 UTC
  • mfrom: (1226.1.4 push)
  • Revision ID: brian@gaz-20091126185002-se908a2ceq9ub2rn
Mege of TableIdentifier gran patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <drizzled/xid.h>
24
24
#include <drizzled/discrete_interval.h>
 
25
#include <drizzled/table_identifier.h>
25
26
 
26
27
/* Definitions for parameters to do with Cursor-routines */
27
28
 
846
847
                         int *timestamps, int *timestamps_with_niladic,
847
848
                         int64_t table_flags);
848
849
 
849
 
bool mysql_create_table(Session *session,const char *db, const char *table_name,
 
850
bool mysql_create_table(Session *session,
 
851
                        drizzled::TableIdentifier &identifier,
850
852
                        HA_CREATE_INFO *create_info,
851
853
                        drizzled::message::Table *table_proto,
852
854
                        AlterInfo *alter_info,
853
855
                        bool tmp_table, uint32_t select_field_count,
854
856
                        bool is_if_not_exists);
855
857
 
856
 
bool mysql_create_table_no_lock(Session *session, const char *db,
857
 
                                const char *table_name,
 
858
bool mysql_create_table_no_lock(Session *session,
 
859
                                drizzled::TableIdentifier &identifier,
858
860
                                HA_CREATE_INFO *create_info,
859
861
                                drizzled::message::Table *table_proto,
860
862
                                AlterInfo *alter_info,
861
 
                                bool tmp_table, uint32_t select_field_count, 
 
863
                                bool tmp_table,
 
864
                                uint32_t select_field_count,
862
865
                                bool is_if_not_exists);
863
866
 
864
867
bool mysql_recreate_table(Session *session, TableList *table_list);