Commit 7f0c3a94 authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

addresses #1569

fix stupid bug

git-svn-id: file:///svn/mysql/tokudb-engine/src@10985 c7de825b-a66e-492c-adef-691d508d4ae1
parent be83115c
...@@ -1018,7 +1018,7 @@ int tokudb_cmp_dbt_key(DB *file, const DBT *keya, const DBT *keyb) { ...@@ -1018,7 +1018,7 @@ int tokudb_cmp_dbt_key(DB *file, const DBT *keya, const DBT *keyb) {
} }
int tokudb_cmp_dbt_data(DB *file, const DBT *keya, const DBT *keyb) { int tokudb_cmp_dbt_data(DB *file, const DBT *keya, const DBT *keyb) {
int row_desc_offset = *(u_int32_t *)file->descriptor.size; int row_desc_offset = *(u_int32_t *)file->descriptor.data;
int cmp = tokudb_compare_two_keys( int cmp = tokudb_compare_two_keys(
keya->data, keya->data,
keya->size, keya->size,
......
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