Process Log packets, used when inserting data by blocks
| 2330 | |
| 2331 | /// Process Log packets, used when inserting data by blocks |
| 2332 | void ClientBase::receiveLogsAndProfileEvents(ASTPtr parsed_query) |
| 2333 | { |
| 2334 | auto packet_type = connection->checkPacket(0); |
| 2335 | |
| 2336 | while (packet_type && (*packet_type == Protocol::Server::Log |
| 2337 | || *packet_type == Protocol::Server::ProfileEvents |
| 2338 | || *packet_type == Protocol::Server::TimezoneUpdate)) |
| 2339 | { |
| 2340 | receiveAndProcessPacket(parsed_query, false); |
| 2341 | packet_type = connection->checkPacket(0); |
| 2342 | } |
| 2343 | } |
| 2344 | |
| 2345 | |
| 2346 | /// Process Log packets, exit when receive Exception or EndOfStream |
nothing calls this directly
no test coverage detected