mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Changes needed for ColumnStore and insert cache
MCOL-3875 Columnstore write cache The main change is to change thr_lock function get_status to return a value that indicates we have to abort the lock. Other thing: - Made start_bulk_insert() and end_bulk_insert() protected so that the insert cache can use these
This commit is contained in:
@ -4866,9 +4866,9 @@ private:
|
||||
DBUG_ASSERT(!(ha_table_flags() & HA_CAN_REPAIR));
|
||||
return HA_ADMIN_NOT_IMPLEMENTED;
|
||||
}
|
||||
protected:
|
||||
virtual void start_bulk_insert(ha_rows rows, uint flags) {}
|
||||
virtual int end_bulk_insert() { return 0; }
|
||||
protected:
|
||||
virtual int index_read(uchar * buf, const uchar * key, uint key_len,
|
||||
enum ha_rkey_function find_flag)
|
||||
{ return HA_ERR_WRONG_COMMAND; }
|
||||
|
Reference in New Issue
Block a user