summaryrefslogtreecommitdiff
path: root/include/myisam.h
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2017-04-16 22:40:39 +0300
committerMonty <monty@mariadb.org>2017-04-18 12:23:53 +0300
commita05a610d60a6d177b66f9da97906efdb44336a6f (patch)
treebca0d63ddc2a8b43d22a3d1732e5497caab40f78 /include/myisam.h
parentd82ac8eaafd89a6a74436747b660ef02c69eaac3 (diff)
downloadmariadb-git-a05a610d60a6d177b66f9da97906efdb44336a6f.tar.gz
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.
Diffstat (limited to 'include/myisam.h')
-rw-r--r--include/myisam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/myisam.h b/include/myisam.h
index f7a3ae8cc8a..dfbc00f64aa 100644
--- a/include/myisam.h
+++ b/include/myisam.h
@@ -275,7 +275,7 @@ extern int mi_rsame(struct st_myisam_info *file,uchar *record,int inx);
extern int mi_rsame_with_pos(struct st_myisam_info *file,uchar *record,
int inx, my_off_t pos);
extern int mi_update(struct st_myisam_info *file,const uchar *old,
- uchar *new_record);
+ const uchar *new_record);
extern int mi_write(struct st_myisam_info *file,uchar *buff);
extern my_off_t mi_position(struct st_myisam_info *file);
extern int mi_status(struct st_myisam_info *info, MI_ISAMINFO *x, uint flag);