~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
704
704
bool mysql_create_table(Session *session,
705
705
                        TableIdentifier &identifier,
706
706
                        HA_CREATE_INFO *create_info,
707
 
                        message::Table *table_proto,
 
707
                        message::Table &table_proto,
708
708
                        AlterInfo *alter_info,
709
709
                        bool tmp_table, uint32_t select_field_count,
710
710
                        bool is_if_not_exists);
712
712
bool mysql_create_table_no_lock(Session *session,
713
713
                                TableIdentifier &identifier,
714
714
                                HA_CREATE_INFO *create_info,
715
 
                                message::Table *table_proto,
 
715
                                message::Table &table_proto,
716
716
                                AlterInfo *alter_info,
717
717
                                bool tmp_table,
718
718
                                uint32_t select_field_count,
719
719
                                bool is_if_not_exists);
720
720
 
721
 
bool mysql_create_like_table(Session* session, TableList* table, TableList* src_table,
722
 
                             message::Table& create_table_proto,
723
 
                             plugin::StorageEngine*,
 
721
bool mysql_create_like_table(Session* session,
 
722
                             TableList* table, TableList* src_table,
 
723
                             message::Table &create_table_proto,
724
724
                             bool is_if_not_exists,
725
725
                             bool is_engine_set);
726
726