| 515 | } |
| 516 | |
| 517 | AsynchronousInsertQueue::PushResult AsynchronousInsertQueue::pushQueryWithBlock(ASTPtr query, Block && block, ContextPtr query_context) |
| 518 | { |
| 519 | query = query->clone(); |
| 520 | preprocessInsertQuery(query, query_context); |
| 521 | return pushDataChunk(std::move(query), std::move(block), std::move(query_context)); |
| 522 | } |
| 523 | |
| 524 | std::vector<std::string> AsynchronousInsertQueue::getInsertQueryIds(InsertData & data) |
| 525 | { |
no test coverage detected