X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fzebraapi.c;h=ff18046c88fbf04e0f868e70e1874fa5dd7c298e;hb=477d69a25bcac01143c26d8842f9d741d638964b;hp=65b91764a3672c81dd4b773bec8494a4e56e792b;hpb=d71149439012fadf092321e3b507d23711715743;p=idzebra-moved-to-github.git diff --git a/index/zebraapi.c b/index/zebraapi.c index 65b9176..ff18046 100644 --- a/index/zebraapi.c +++ b/index/zebraapi.c @@ -1,5 +1,5 @@ /* This file is part of the Zebra server. - Copyright (C) 1994-2009 Index Data + Copyright (C) 1994-2010 Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -420,7 +420,7 @@ struct zebra_register *zebra_register_open(ZebraService zs, const char *name, zebraRankInstall(reg, rank_similarity_class); zebraRankInstall(reg, rank_static_class); - compression_str = res_get_def(res, "compression_str", "none"); + compression_str = res_get_def(res, "recordCompression", "none"); if (!strcmp(compression_str, "none")) record_compression = REC_COMPRESS_NONE; else if (!strcmp(compression_str, "bzip2")) @@ -433,6 +433,13 @@ struct zebra_register *zebra_register_open(ZebraService zs, const char *name, ret = ZEBRA_FAIL; } + if (!rec_check_compression_method(record_compression)) + { + yaz_log(YLOG_FATAL, "unsupported recordCompression: %s", + compression_str); + ret = ZEBRA_FAIL; + } + { const char *index_fname = res_get_def(res, "index", "default.idx"); if (index_fname && *index_fname && strcmp(index_fname, "none"))