Skip to content

Commit

Permalink
refs #6089 support extended keys in tokudb
Browse files Browse the repository at this point in the history
git-svn-id: file:///svn/mysql.com/mariadb-5.5.30@54919 c7de825b-a66e-492c-adef-691d508d4ae1
  • Loading branch information
prohaska committed Mar 29, 2013
1 parent a659310 commit 4f956ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/table.cc
Expand Up @@ -875,8 +875,8 @@ static int open_binary_frm(THD *thd, TABLE_SHARE *share, uchar *head,
to get a proper handlerton for the interesting engine in order to get
properties of this engine.
*/
/* Currently only InnoDB can use extended keys */
share->set_use_ext_keys_flag(legacy_db_type == DB_TYPE_INNODB);
/* Currently only InnoDB and TokuDB can use extended keys */
share->set_use_ext_keys_flag(legacy_db_type == DB_TYPE_INNODB || legacy_db_type == DB_TYPE_TOKUDB);

len= (uint) uint2korr(disk_buff+4);
if (!keys)
Expand Down

0 comments on commit 4f956ac

Please sign in to comment.