Commit 55f43952 authored by marko's avatar marko

branches/zip: row_mysql_store_blob_ref(): Change the type of the parameter

"data" from byte* to const void*.
parent df88e3c9
...@@ -63,12 +63,17 @@ Stores a reference to a BLOB in the MySQL format. */ ...@@ -63,12 +63,17 @@ Stores a reference to a BLOB in the MySQL format. */
void void
row_mysql_store_blob_ref( row_mysql_store_blob_ref(
/*=====================*/ /*=====================*/
byte* dest, /* in: where to store */ byte* dest, /* in: where to store */
ulint col_len, /* in: dest buffer size: determines into ulint col_len,/* in: dest buffer size: determines into
how many bytes the BLOB length is stored, how many bytes the BLOB length is stored,
this may vary from 1 to 4 bytes */ the space for the length may vary from 1
byte* data, /* in: BLOB data */ to 4 bytes */
ulint len); /* in: BLOB length */ const void* data, /* in: BLOB data; if the value to store
is SQL NULL this should be NULL pointer */
ulint len); /* in: BLOB length; if the value to store
is SQL NULL this should be 0; remember
also to set the NULL bit in the MySQL record
header! */
/*********************************************************************** /***********************************************************************
Reads a reference to a BLOB in the MySQL format. */ Reads a reference to a BLOB in the MySQL format. */
......
...@@ -180,14 +180,14 @@ Stores a reference to a BLOB in the MySQL format. */ ...@@ -180,14 +180,14 @@ Stores a reference to a BLOB in the MySQL format. */
void void
row_mysql_store_blob_ref( row_mysql_store_blob_ref(
/*=====================*/ /*=====================*/
byte* dest, /* in: where to store */ byte* dest, /* in: where to store */
ulint col_len, /* in: dest buffer size: determines into ulint col_len,/* in: dest buffer size: determines into
how many bytes the BLOB length is stored, how many bytes the BLOB length is stored,
the space for the length may vary from 1 the space for the length may vary from 1
to 4 bytes */ to 4 bytes */
byte* data, /* in: BLOB data; if the value to store const void* data, /* in: BLOB data; if the value to store
is SQL NULL this should be NULL pointer */ is SQL NULL this should be NULL pointer */
ulint len) /* in: BLOB length; if the value to store ulint len) /* in: BLOB length; if the value to store
is SQL NULL this should be 0; remember is SQL NULL this should be 0; remember
also to set the NULL bit in the MySQL record also to set the NULL bit in the MySQL record
header! */ header! */
...@@ -208,7 +208,7 @@ row_mysql_store_blob_ref( ...@@ -208,7 +208,7 @@ row_mysql_store_blob_ref(
mach_write_to_n_little_endian(dest, col_len - 8, len); mach_write_to_n_little_endian(dest, col_len - 8, len);
ut_memcpy(dest + col_len - 8, &data, sizeof(byte*)); memcpy(dest + col_len - 8, &data, sizeof 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