You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-3424 Fix handler API breakage for write_row()
The MariaDB handler API changed for write_row(). The 'buf' parameter is now a 'const'. This meant that our implementation didn't match the virtual call so ours was no longer called. This implemented the 'const'.
This commit is contained in:
@ -305,7 +305,7 @@ int ha_calpont::close(void)
|
||||
sql_insert.cc, sql_select.cc, sql_table.cc, sql_udf.cc and sql_update.cc
|
||||
*/
|
||||
|
||||
int ha_calpont::write_row(uchar* buf)
|
||||
int ha_calpont::write_row(const uchar* buf)
|
||||
{
|
||||
DBUG_ENTER("ha_calpont::write_row");
|
||||
int rc = ha_calpont_impl_write_row(buf, table);
|
||||
|
Reference in New Issue
Block a user