X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=index%2Fzebraapi.c;h=adc9b6a02df676ffaba957cc6e4dc7df51b25d34;hb=f3f94568869a1ae0402bfa4f0dea4d80b09695df;hp=202f7bbf56a6b149411559f97e46e96a428fcd34;hpb=cd02e9c5558d2f0db2ab83fcad810a6522fd2319;p=idzebra-moved-to-github.git diff --git a/index/zebraapi.c b/index/zebraapi.c index 202f7bb..adc9b6a 100644 --- a/index/zebraapi.c +++ b/index/zebraapi.c @@ -1437,12 +1437,25 @@ int delete_w_handle(const char *info, void *handle) return 0; } -static int delete_SU_handle(void *handle, int ord) +static int delete_SU_handle(void *handle, int ord, + const char *index_type, const char *string_index, + zinfo_index_category_t cat) { ZebraHandle zh = (ZebraHandle) handle; char ord_buf[20]; int ord_len; - +#if 0 + const char *index_type = 0; + const char *db = 0; + const char *string_index = 0; + zebraExplain_lookup_ord(zh->reg->zei, ord, + &index_type, &db, &string_index); + yaz_log(YLOG_LOG, + "delete_SU_handle:: ord=%d index_type=%s db=%s string_index=%s", + ord, index_type, db, string_index); +#endif + yaz_log(YLOG_LOG, "ord=%d index_type=%s index=%s cat=%d", ord, + index_type, string_index, (int) cat); ord_len = key_SU_encode(ord, ord_buf); ord_buf[ord_len] = '\0';