From: Adam Dickmeiss Date: Thu, 18 Sep 2008 22:54:24 +0000 (+0200) Subject: Added cql2rpn as allowed querytype X-Git-Tag: v3.0.36~6^2 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=ad65c72fe9600038ea5b0c7927e8d65c0f268df9 Added cql2rpn as allowed querytype --- diff --git a/client/tabcomplete.c b/client/tabcomplete.c index 7bd6eca..283b90b 100644 --- a/client/tabcomplete.c +++ b/client/tabcomplete.c @@ -102,7 +102,7 @@ const char** build_list_for_oclass(oid_class oclass) char* complete_querytype(const char *text, int state) { - static const char* querytypes[] = {"ccl2rpn","prefix","cclrpn","ccl","cql", 0}; + static const char* querytypes[] = {"ccl2rpn","prefix","cclrpn","ccl","cql", "cql2rpn", 0}; return complete_from_list(querytypes,text,state); }