From c807ea79a7d7ecff9d38e409eb6d8517c2bc26a3 Mon Sep 17 00:00:00 2001 From: Rich Prohaska Date: Wed, 17 Apr 2013 00:02:13 -0400 Subject: [PATCH] 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 --- storage/tokudb/hatoku_cmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/tokudb/hatoku_cmp.h b/storage/tokudb/hatoku_cmp.h index 9f1db9606b3..973fd6605d6 100644 --- a/storage/tokudb/hatoku_cmp.h +++ b/storage/tokudb/hatoku_cmp.h @@ -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];