mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
MDEV-30366 Permit bulk implementation to return ALL individual results
COM_STMT_BULK_STMT new flag to server to returns all unitary results
This commit is contained in:
@@ -5953,6 +5953,14 @@ public:
|
||||
return (lex->sphead != 0 &&
|
||||
!(in_sub_stmt & (SUB_STMT_FUNCTION | SUB_STMT_TRIGGER)));
|
||||
}
|
||||
|
||||
/* Data and methods for bulk multiple unit result reporting */
|
||||
DYNAMIC_ARRAY *unit_results;
|
||||
void stop_collecting_unit_results();
|
||||
bool collect_unit_results(ulonglong id, ulonglong affected_rows);
|
||||
bool need_report_unit_results();
|
||||
bool report_collected_unit_results();
|
||||
bool init_collecting_unit_results();
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user