MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / Index_Query

Function Index_Query

src/index/index.c:422–432  ·  view source on GitHub ↗

query index

Source from the content-addressed store, hash-verified

420
421// query index
422RSResultsIterator *Index_Query
423(
424 const Index idx,
425 const char *query,
426 char **err
427) {
428 ASSERT(idx != NULL);
429 ASSERT(query != NULL);
430
431 return RediSearch_IterateQuery(idx->rsIdx, query, strlen(query), err);
432}
433
434// returns index type
435IndexType Index_Type

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected