Commit 88babc5f authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

refs #5340 make a comment about the key_filters bit map more precise

git-svn-id: file:///svn/mysql/tokudb-engine/tokudb-engine@47353 c7de825b-a66e-492c-adef-691d508d4ae1
parent e03a1549
......@@ -72,7 +72,7 @@ typedef struct st_key_and_col_info {
// bitmaps for each key. key_filters[i] is associated with the i'th dictionary
// States what columns are not stored in the vals of each key, because
// the column is stored in the key. So, for example, the table (a int, b int, c int, d int, primary key (b,d)) will
// have the second and fourth bit of the primary key's bitmap set for the main dictionary's bitmap,
// have bit 1 (for 'b') and bit 3 (for 'd') of the primary key's bitmap set for the main dictionary's bitmap,
// because 'b' and 'd' do not show up in the val
//
MY_BITMAP key_filters[MAX_KEY+1];
......
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