| 445 | } |
| 446 | |
| 447 | TRemoteQueryProcessor::TRemoteQueryProcessor() |
| 448 | : InitCmd(new TInitCmd) |
| 449 | , PingCmd(new TPingCmd) |
| 450 | , RunPingCmd(new TRunPingCmd) |
| 451 | , SetExecPlanCmd(new TSetExecPlanCmd) |
| 452 | , StopSlaveCmd(new TStopSlaveCmd) |
| 453 | , GatherStatsCmd(new TGatherStatsCmd) |
| 454 | { |
| 455 | MetaThread = SystemThreadFactory()->Run([this]() { |
| 456 | MetaThreadFunction(); |
| 457 | }); |
| 458 | } |
| 459 | |
| 460 | TRemoteQueryProcessor::~TRemoteQueryProcessor() { |
| 461 | if (DoRun) { |
nothing calls this directly
no test coverage detected