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

Function Graph_EntityIsDeleted

src/graph/graph.c:1158–1168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1156}
1157
1158inline bool Graph_EntityIsDeleted
1159(
1160 const GraphEntity *e
1161) {
1162 if(e->attributes == NULL) {
1163 // most likely an entity which wasn't created just yet (reserved)
1164 return false;
1165 }
1166
1167 return DataBlock_ItemIsDeleted(e->attributes);
1168}
1169
1170static void _Graph_FreeRelationMatrices
1171(

Callers 3

GraphEntity_IsDeletedFunction · 0.85
_DeleteEntitiesFunction · 0.85
EvalEntityUpdatesFunction · 0.85

Calls 1

DataBlock_ItemIsDeletedFunction · 0.85

Tested by

no test coverage detected