Commit 8a3c9885 authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

addresses 612

change max number of keys to be 64

git-svn-id: file:///svn/mysql/tokudb-engine/src@4796 c7de825b-a66e-492c-adef-691d508d4ae1
parent 2a0b99ac
...@@ -185,7 +185,7 @@ class ha_tokudb : public handler { ...@@ -185,7 +185,7 @@ class ha_tokudb : public handler {
// Returns limit on the number of keys imposed by tokudb. // Returns limit on the number of keys imposed by tokudb.
// //
uint max_supported_keys() const { uint max_supported_keys() const {
return MAX_KEY - 1; return MAX_KEY;
} }
uint extra_rec_buf_length() const { uint extra_rec_buf_length() const {
......
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