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

Function UndoLog_CreateNode

src/undo_log/undo_log.c:350–363  ·  view source on GitHub ↗

undo node creation

Source from the content-addressed store, hash-verified

348
349// undo node creation
350void UndoLog_CreateNode
351(
352 UndoLog log, // undo log
353 Node *node // node created
354) {
355 ASSERT(log != NULL);
356
357 UndoOp op;
358
359 op.type = UNDO_CREATE_NODE;
360 op.create_op.n = *node;
361
362 UNDOLOG_ADD_OP(log, op);
363}
364
365// undo edge creation
366void UndoLog_CreateEdge

Callers 1

CreateNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected