| 3819 | |
| 3820 | |
| 3821 | std::shared_ptr<QueryExchangeLog> Context::getQueryExchangeLog() const |
| 3822 | { |
| 3823 | auto lock = getLock(); // checked |
| 3824 | |
| 3825 | if (!shared->system_logs) |
| 3826 | return {}; |
| 3827 | |
| 3828 | return shared->system_logs->query_exchange_log; |
| 3829 | } |
| 3830 | |
| 3831 | |
| 3832 | std::shared_ptr<PartLog> Context::getPartLog(const String & part_database) const |
no test coverage detected