1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

This patch fllows the change introduced in the direct_update/delete API

in 10.4.11 to fix MDEV-18973 in Spider.
This commit is contained in:
Roman Nozdrin
2019-12-10 22:39:49 -06:00
parent 914fa570fa
commit 19b4702a24
2 changed files with 13 additions and 5 deletions

View File

@ -154,6 +154,7 @@ public:
int update_row(const uchar* old_data, uchar* new_data);
int direct_update_rows_init(List<Item> *update_fields);
int direct_update_rows(ha_rows *update_rows);
int direct_update_rows(ha_rows *update_rows, ha_rows *found_rows);
/** @brief
We implement this in ha_example.cc. It's not an obligatory method;