From: Date: February 16 2006 12:39pm Subject: bk commit into 5.1 tree (svoj:1.2115) BUG#17116 List-Archive: http://lists.mysql.com/commits/2719 X-Bug: 17116 Message-Id: <20060216113922.3F5931064@april.pils.ru> Below is the list of changes that have just been committed into a local 5.1 repository of svoj. When svoj does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.2115 06/02/16 15:39:15 svoj@april.(none) +1 -0 BUG#17116: myisam_ftdump doesn't work with fulltext indexes using a parser plugin Fixed that myisam_ftdump fails (error 138 that is HA_ERR_UNSUPPORTED) to open table with fulltext index with custom parser. storage/myisam/myisam_ftdump.c 1.39 06/02/16 15:39:10 svoj@april.(none) +1 -1 Allow myisam_ftdump to open table with fulltext index with custom parser. This is implemented by passing HA_OPEN_FROM_SQL_LAYER flag to mi_open(). # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: svoj # Host: april.(none) # Root: /home/svoj/devel/mysql/BUG17184/mysql-5.1-new --- 1.38/storage/myisam/myisam_ftdump.c 2006-01-16 17:26:28 +04:00 +++ 1.39/storage/myisam/myisam_ftdump.c 2006-02-16 15:39:10 +04:00 @@ -86,7 +86,7 @@ init_key_cache(dflt_key_cache,MI_KEY_BLOCK_LENGTH,USE_BUFFER_INIT, 0, 0); - if (!(info=mi_open(argv[0],2,HA_OPEN_ABORT_IF_LOCKED))) + if (!(info=mi_open(argv[0],2,HA_OPEN_ABORT_IF_LOCKED|HA_OPEN_FROM_SQL_LAYER))) { error=my_errno; goto err;