Commit 40edfbb8 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix the 32bit linux compile problem [t:1999]

git-svn-id: file:///svn/mysql/tokudb-engine/src@14451 c7de825b-a66e-492c-adef-691d508d4ae1
parent ca44b0d3
......@@ -3982,7 +3982,7 @@ int ha_tokudb::info(uint flag) {
}
}
if ((flag & HA_STATUS_CONST)) {
stats.max_data_file_length= 9223372036854775807;
stats.max_data_file_length= 9223372036854775807ULL;
for (uint i = 0; i < table_share->keys; i++) {
table->key_info[i].rec_per_key[table->key_info[i].key_parts - 1] = 0;
}
......
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