| 6179 | |
| 6180 | |
| 6181 | std::shared_ptr<QueryLog> Context::getQueryLog() const |
| 6182 | { |
| 6183 | SharedLockGuard lock(shared->mutex); |
| 6184 | |
| 6185 | if (!shared->system_logs) |
| 6186 | return {}; |
| 6187 | |
| 6188 | return shared->system_logs->query_log; |
| 6189 | } |
| 6190 | |
| 6191 | std::shared_ptr<QueryMetricLog> Context::getQueryMetricLog() const |
| 6192 | { |
no outgoing calls
no test coverage detected