Skip to content

Commit

Permalink
Fix issue #9: HA_ERR_INTERNAL_ERROR when running linkbench
Browse files Browse the repository at this point in the history
fbshipit-source-id: 58e0ffecb9f
  • Loading branch information
spetrunia authored and facebook-github-bot committed Dec 23, 2019
1 parent b534c96 commit 3c74be2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/rocksdb/ha_rocksdb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ int ha_rocksdb::convert_record_from_storage_format(uchar * buf)
/* field_var->length_bytes is 1 or 2 */
if (field_var->length_bytes == 1)
{
data_len= data_len_str[0];
data_len= (uchar)data_len_str[0];
}
else
{
Expand Down

0 comments on commit 3c74be2

Please sign in to comment.