Returns true if the error log has not reached max_errors_.
| 180 | |
| 181 | /// Returns true if the error log has not reached max_errors_. |
| 182 | bool LogHasSpace() { |
| 183 | std::lock_guard<SpinLock> l(error_log_lock_); |
| 184 | return error_log_.size() < query_options().max_errors; |
| 185 | } |
| 186 | |
| 187 | /// Returns true if there are entries in the error log. |
| 188 | bool HasErrors() { |
no test coverage detected