1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-13 20:03:16 +03:00

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

This commit is contained in:
marko
2008-01-11 19:51:19 +00:00
parent f6f4a52b30
commit d837c2040f
2 changed files with 2 additions and 2 deletions

View File

@@ -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. */

View File

@@ -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;