X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=client%2Fclient.c;h=02270850f9cfe0cd1e2520960a4c378b82cf0f0d;hp=e77e35cef7ee4d6c90e3e386a29fa5d805090a92;hb=a95e1c4f3d0f4edad819cf20832fbab228db81d3;hpb=9274947f1618751c10d1eb941692397537e79cae diff --git a/client/client.c b/client/client.c index e77e35c..0227085 100644 --- a/client/client.c +++ b/client/client.c @@ -1454,7 +1454,8 @@ static int send_SRW_searchRequest(const char *arg) printf("Only CQL and PQF supported in SRW\n"); return 0; } - sr->u.request->maximumRecords = odr_intdup(out, 0); + // TODO check. + sr->u.request->maximumRecords = odr_intdup(out, 20); sr->u.request->facetList = facet_list; if (record_schema) sr->u.request->recordSchema = record_schema; @@ -2887,6 +2888,8 @@ static int cmd_find(const char *arg) static int cmd_facets(const char *arg) { + /* TODO Wrong odr. Loosing memory */ + ODR odr = odr_createmem(ODR_ENCODE); int size = 0; if (!*arg) { @@ -2895,15 +2898,10 @@ static int cmd_facets(const char *arg) return 0; } size = strlen(arg); -/* - MOVE to non-usage of it? if (only_z3950() && !yaz_matchstr(sru_method, "solr")) { - // We are not Z39.50 and not SOLR (I think) + /* We are not Z39.50 and not SOLR (I think) */ printf("WARN: Currently supported for Z39.50 and SOLR.\n"); } -º/ - /* TODO Wrong odr. Loosing memory */ - ODR odr = odr_createmem(ODR_ENCODE); facet_list = yaz_pqf_parse_facet_list(odr, arg); if (!facet_list)