Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ha_ibmdb2i.cc
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ int ha_ibmdb2i::prepareRowForWrite(char* data, char* nulls, bool honorIdentCols)



int ha_ibmdb2i::update_row(const uchar * old_data, uchar * new_data)
int ha_ibmdb2i::update_row(const uchar * old_data, const uchar * new_data)
{
DBUG_ENTER("ha_ibmdb2i::update_row");
increment_statistics(&SSV::ha_update_count);
Expand Down
2 changes: 1 addition & 1 deletion ha_ibmdb2i.h
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ class ha_ibmdb2i: public handler
int open(const char *name, int mode, uint test_if_locked);
int close(void);
int write_row(uchar * buf);
int update_row(const uchar * old_data, uchar * new_data);
virtual int update_row(const uchar * old_data, const uchar * new_data) override;
int delete_row(const uchar * buf);
int index_init(uint idx, bool sorted);
int index_read(uchar * buf, const uchar * key,
Expand Down