From 95de6b449ec462d5f0aee50a239ca2fb087d5a91 Mon Sep 17 00:00:00 2001 From: "svoj@april.(none)" <> Date: Thu, 16 Feb 2006 15:39:15 +0400 Subject: [PATCH] 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/myisam/myisam_ftdump.c b/storage/myisam/myisam_ftdump.c index 28aac0a8ecf..edf1af144d4 100644 --- a/storage/myisam/myisam_ftdump.c +++ b/storage/myisam/myisam_ftdump.c @@ -86,7 +86,7 @@ int main(int argc,char *argv[]) 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;