| 16 | std::mutex AsyncWriter::globalLock = std::mutex(); |
| 17 | |
| 18 | void AsyncWriter::execInit(const async::ExecInfo& info, const AsyncWriterInit& params) { |
| 19 | // (do nothing here) |
| 20 | } |
| 21 | void AsyncWriter::exec(const async::ExecInfo& info, const AsyncWriterExec& params) { |
| 22 | const void* data = info.buffer(PlanId); |
| 23 | const size_t size = info.bufferSize(PlanId); |
nothing calls this directly
no outgoing calls
no test coverage detected