mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge bb-10.1-explain-analyze into 10.1
This commit is contained in:
@ -3961,6 +3961,20 @@ public:
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
We need this class, because select_send::send_eof() will call ::my_eof.
|
||||
|
||||
See also class Protocol_discard.
|
||||
*/
|
||||
|
||||
class select_send_analyze : public select_send
|
||||
{
|
||||
bool send_result_set_metadata(List<Item> &list, uint flags) { return 0; }
|
||||
bool send_eof() { return 0; }
|
||||
void abort_result_set() {}
|
||||
};
|
||||
|
||||
|
||||
class select_to_file :public select_result_interceptor {
|
||||
protected:
|
||||
sql_exchange *exchange;
|
||||
|
Reference in New Issue
Block a user