Skip to content
Merged

2.12 cp #3173

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/execution_plan/ops/op.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ void OpBase_PropagateReset
uint write_op_count = array_len(write_ops);
for(uint i = 0; i < write_op_count; i++) {
OpBase *write_op = write_ops[i];
OpResult res = op->reset(op);
OpResult res = write_op->reset(write_op);
ASSERT(res == OP_OK);
}

Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#define REDISGRAPH_VERSION_MAJOR 2
#define REDISGRAPH_VERSION_MINOR 12
#define REDISGRAPH_VERSION_PATCH 7
#define REDISGRAPH_VERSION_PATCH 8

#define REDISGRAPH_SEMANTIC_VERSION(major, minor, patch) \
(major * 10000 + minor * 100 + patch)
Expand Down