mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
fix the failing federated.federated_innodb test:
update all start_bulk_insert() methods to the new signature.
This commit is contained in:
parent
eb809ec061
commit
6ac52386bb
7 changed files with 7 additions and 6 deletions
|
|
@ -1979,7 +1979,7 @@ int ha_federated::write_row(uchar *buf)
|
|||
@details Initializes memory structures required for bulk insert.
|
||||
*/
|
||||
|
||||
void ha_federated::start_bulk_insert(ha_rows rows)
|
||||
void ha_federated::start_bulk_insert(ha_rows rows, uint flags)
|
||||
{
|
||||
uint page_size;
|
||||
DBUG_ENTER("ha_federated::start_bulk_insert");
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ public:
|
|||
int open(const char *name, int mode, uint test_if_locked); // required
|
||||
int close(void); // required
|
||||
|
||||
void start_bulk_insert(ha_rows rows);
|
||||
void start_bulk_insert(ha_rows rows, uint flags);
|
||||
int end_bulk_insert();
|
||||
int write_row(uchar *buf);
|
||||
int update_row(const uchar *old_data, uchar *new_data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue