~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Brian Aker
  • Date: 2010-03-04 08:33:14 UTC
  • mfrom: (1320.1.12 build)
  • Revision ID: brian@gaz-20100304083314-pscg89hdw618s2j5
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
716
716
bool mysql_create_table(Session *session,
717
717
                        TableIdentifier &identifier,
718
718
                        HA_CREATE_INFO *create_info,
719
 
                        message::Table *table_proto,
 
719
                        message::Table &table_proto,
720
720
                        AlterInfo *alter_info,
721
721
                        bool tmp_table, uint32_t select_field_count,
722
722
                        bool is_if_not_exists);
724
724
bool mysql_create_table_no_lock(Session *session,
725
725
                                TableIdentifier &identifier,
726
726
                                HA_CREATE_INFO *create_info,
727
 
                                message::Table *table_proto,
 
727
                                message::Table &table_proto,
728
728
                                AlterInfo *alter_info,
729
729
                                bool tmp_table,
730
730
                                uint32_t select_field_count,
731
731
                                bool is_if_not_exists);
732
732
 
733
 
bool mysql_create_like_table(Session* session, TableList* table, TableList* src_table,
734
 
                             message::Table& create_table_proto,
735
 
                             plugin::StorageEngine*,
 
733
bool mysql_create_like_table(Session* session,
 
734
                             TableList* table, TableList* src_table,
 
735
                             message::Table &create_table_proto,
736
736
                             bool is_if_not_exists,
737
737
                             bool is_engine_set);
738
738