Browse Source

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

pull/73/head
marko 18 years ago
parent
commit
1a0998f478
  1. 2
      include/eval0eval.h
  2. 2
      include/eval0eval.ic

2
include/eval0eval.h

@ -62,7 +62,7 @@ void
eval_node_copy_and_alloc_val(
/*=========================*/
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 */
/*********************************************************************
Copies a query node value to another node. */

2
include/eval0eval.ic

@ -200,7 +200,7 @@ void
eval_node_copy_and_alloc_val(
/*=========================*/
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 */
{
byte* data;

Loading…
Cancel
Save