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

Fix method declarations to match the base class (-Woverloaded-virtual)

This commit is contained in:
Alexey Antipovsky
2020-11-11 05:27:48 +00:00
parent e1f6f9f078
commit 83d3adf466
2 changed files with 6 additions and 6 deletions

View File

@ -381,7 +381,7 @@ int ha_mcs::end_bulk_insert()
@see
*/
int ha_mcs::update_row(const uchar* old_data, uchar* new_data)
int ha_mcs::update_row(const uchar* old_data, const uchar* new_data)
{
DBUG_ENTER("ha_mcs::update_row");
@ -1034,8 +1034,8 @@ int ha_mcs::rename_table(const char* from, const char* to)
@see
check_quick_keys() in opt_range.cc
*/
ha_rows ha_mcs::records_in_range(uint32_t inx, key_range* min_key,
key_range* max_key)
ha_rows ha_mcs::records_in_range(uint32_t inx, const key_range* min_key,
const key_range* max_key, page_range* res)
{
DBUG_ENTER("ha_mcs::records_in_range");
DBUG_RETURN(10); // low number to force index usage