| 103 | } |
| 104 | |
| 105 | static void DestroyAccumulator(sqlite3_context* invocation) { |
| 106 | Accumulator* acc = static_cast<Accumulator*>(sqlite3_aggregate_context(invocation, sizeof(Accumulator))); |
| 107 | assert(acc->initialized); |
| 108 | acc->value.Reset(); |
| 109 | } |
| 110 | |
| 111 | void PropagateJSError(sqlite3_context* invocation) { |
| 112 | DestroyAccumulator(invocation); |
nothing calls this directly
no outgoing calls
no test coverage detected