Commit f8b405c5 authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

addresses #1648

change function name

git-svn-id: file:///svn/mysql/tokudb-engine/src@11050 c7de825b-a66e-492c-adef-691d508d4ae1
parent 1b601932
...@@ -535,7 +535,7 @@ inline uchar* pack_toku_varstring( ...@@ -535,7 +535,7 @@ inline uchar* pack_toku_varstring(
} }
inline uchar* pack_toku_varblob( inline uchar* pack_toku_blob(
uchar* to_tokudb, uchar* to_tokudb,
uchar* from_mysql, uchar* from_mysql,
u_int32_t length_bytes_in_tokudb, //number of bytes to use to encode the length in to_tokudb u_int32_t length_bytes_in_tokudb, //number of bytes to use to encode the length in to_tokudb
...@@ -863,7 +863,7 @@ uchar* pack_toku_field( ...@@ -863,7 +863,7 @@ uchar* pack_toku_field(
); );
goto exit; goto exit;
case (toku_type_blob): case (toku_type_blob):
new_pos = pack_toku_varblob( new_pos = pack_toku_blob(
to_tokudb, to_tokudb,
from_mysql, from_mysql,
get_length_bytes_from_max(key_part_length), get_length_bytes_from_max(key_part_length),
......
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