From f8c77d787fba892cf9d81430a064d31a73963ec0 Mon Sep 17 00:00:00 2001 From: marko <> Date: Wed, 30 Jan 2008 21:15:41 +0000 Subject: [PATCH] row_merge_buf_add(): Add a missing const qualifier to "ext". --- row/row0merge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/row/row0merge.c b/row/row0merge.c index ca92e532f94..2862daad7b6 100644 --- a/row/row0merge.c +++ b/row/row0merge.c @@ -227,7 +227,7 @@ row_merge_buf_add( FALSE if out of space */ row_merge_buf_t* buf, /* in/out: sort buffer */ const dtuple_t* row, /* in: row in clustered index */ - row_ext_t* ext) /* in/out: cache of externally stored + const row_ext_t* ext) /* in: cache of externally stored column prefixes, or NULL */ { ulint i;