fix the failing federated.federated_innodb test:

update all start_bulk_insert() methods to the new signature.
This commit is contained in:
Sergei Golubchik 2013-01-23 16:24:04 +01:00
commit 6ac52386bb
7 changed files with 7 additions and 6 deletions

View file

@ -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");

View file

@ -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);