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

Function ResultSet_IndexCreated

src/resultset/resultset.c:160–171  ·  view source on GitHub ↗

update resultset index creation statistics

Source from the content-addressed store, hash-verified

158
159// update resultset index creation statistics
160void ResultSet_IndexCreated
161(
162 ResultSet *set, // resultset to update
163 int status_code // index creation status code
164) {
165 ASSERT(set != NULL);
166
167 set->stats.index_creation = true;
168 if(status_code == INDEX_OK) {
169 set->stats.indices_created += 1;
170 }
171}
172
173// update resultset index deleted statistics
174void ResultSet_IndexDeleted

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected