| 120 | } |
| 121 | |
| 122 | void GraphEncodeContext_ClearMetaKeys(GraphEncodeContext *ctx) { |
| 123 | ASSERT(ctx); |
| 124 | raxFree(ctx->meta_keys); |
| 125 | ctx->meta_keys = raxNew(); |
| 126 | } |
| 127 | |
| 128 | uint64_t GraphEncodeContext_GetProcessedKeyCount(const GraphEncodeContext *ctx) { |
| 129 | ASSERT(ctx); |
no outgoing calls
no test coverage detected