Commit 1a0998f4 authored by marko's avatar marko

branches/zip: eval_node_copy_and_alloc_val(): Add const qualifier.

parent 31e200da
...@@ -62,7 +62,7 @@ void ...@@ -62,7 +62,7 @@ void
eval_node_copy_and_alloc_val( eval_node_copy_and_alloc_val(
/*=========================*/ /*=========================*/
que_node_t* node, /* in: query graph node */ que_node_t* node, /* in: query graph node */
byte* str, /* in: binary string */ const byte* str, /* in: binary string */
ulint len); /* in: string length or UNIV_SQL_NULL */ ulint len); /* in: string length or UNIV_SQL_NULL */
/********************************************************************* /*********************************************************************
Copies a query node value to another node. */ Copies a query node value to another node. */
......
...@@ -200,7 +200,7 @@ void ...@@ -200,7 +200,7 @@ void
eval_node_copy_and_alloc_val( eval_node_copy_and_alloc_val(
/*=========================*/ /*=========================*/
que_node_t* node, /* in: query graph node */ que_node_t* node, /* in: query graph node */
byte* str, /* in: binary string */ const byte* str, /* in: binary string */
ulint len) /* in: string length or UNIV_SQL_NULL */ ulint len) /* in: string length or UNIV_SQL_NULL */
{ {
byte* data; byte* data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment