mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '10.6' into 10.7
This commit is contained in:
@ -2588,9 +2588,6 @@ struct thd_async_state
|
||||
}
|
||||
};
|
||||
|
||||
extern "C" void thd_increment_pending_ops(MYSQL_THD);
|
||||
extern "C" void thd_decrement_pending_ops(MYSQL_THD);
|
||||
|
||||
|
||||
/**
|
||||
@class THD
|
||||
@ -6109,7 +6106,7 @@ class select_insert :public select_result_interceptor {
|
||||
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
|
||||
virtual int prepare2(JOIN *join);
|
||||
virtual int send_data(List<Item> &items);
|
||||
virtual void store_values(List<Item> &values);
|
||||
virtual bool store_values(List<Item> &values, bool ignore_errors);
|
||||
virtual bool can_rollback_data() { return 0; }
|
||||
bool prepare_eof();
|
||||
bool send_ok_packet();
|
||||
@ -6154,7 +6151,8 @@ public:
|
||||
}
|
||||
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
|
||||
|
||||
void store_values(List<Item> &values);
|
||||
int binlog_show_create_table(TABLE **tables, uint count);
|
||||
bool store_values(List<Item> &values, bool ignore_errors);
|
||||
bool send_eof();
|
||||
virtual void abort_result_set();
|
||||
virtual bool can_rollback_data() { return 1; }
|
||||
|
Reference in New Issue
Block a user