From a05a610d60a6d177b66f9da97906efdb44336a6f Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Sun, 16 Apr 2017 22:40:39 +0300 Subject: Added "const" to new data for handler::update_row() This was done to make it clear that a update_row() should not change the row. This was not done for handler::write_row() as this function still needs to update auto_increment values in the row. This should at some point be moved to handler::ha_write_row() after which write_row can also have const arguments. --- include/maria.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/maria.h') diff --git a/include/maria.h b/include/maria.h index ab8fc944c8c..e25fa4c24ee 100644 --- a/include/maria.h +++ b/include/maria.h @@ -305,7 +305,7 @@ extern int maria_rsame(MARIA_HA *file, uchar *record, int inx); extern int maria_rsame_with_pos(MARIA_HA *file, uchar *record, int inx, MARIA_RECORD_POS pos); extern int maria_update(MARIA_HA *file, const uchar *old, - uchar *new_record); + const uchar *new_record); extern int maria_write(MARIA_HA *file, uchar *buff); extern MARIA_RECORD_POS maria_position(MARIA_HA *file); extern int maria_status(MARIA_HA *info, MARIA_INFO *x, uint flag); -- cgit v1.2.1