| 78 | |
| 79 | |
| 80 | static void writeData(Block data, OutputFormatPtr format) |
| 81 | { |
| 82 | auto source = std::make_shared<SourceFromSingleChunk>(std::move(data)); |
| 83 | auto pipe = Pipe(std::move(source)); |
| 84 | QueryPipeline pipeline; |
| 85 | pipeline.init(std::move(pipe)); |
| 86 | pipeline.complete(std::move(format)); |
| 87 | |
| 88 | CompletedPipelineExecutor executor(pipeline); |
| 89 | executor.execute(); |
| 90 | } |
| 91 | |
| 92 | |
| 93 | ExternalDictionaryLibraryBridgeRequestHandler::ExternalDictionaryLibraryBridgeRequestHandler(size_t keep_alive_timeout_, ContextPtr context_) |
no test coverage detected