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

Function QueryCtx_GetResultSetStatistics

src/query_ctx.c:306–311  ·  view source on GitHub ↗

retrive the resultset statistics

Source from the content-addressed store, hash-verified

304
305// retrive the resultset statistics
306ResultSetStatistics *QueryCtx_GetResultSetStatistics(void) {
307 ResultSetStatistics *stats = NULL;
308 ResultSet *result_set = QueryCtx_GetResultSet();
309 if(result_set) stats = &result_set->stats;
310 return stats;
311}
312
313// print the current query
314void QueryCtx_PrintQuery(void) {

Calls 1

QueryCtx_GetResultSetFunction · 0.85

Tested by

no test coverage detected