Reset the codegen cache.
| 79 | |
| 80 | /// Reset the codegen cache. |
| 81 | void ResetCodegenCache(MetricGroup* metrics = nullptr) { |
| 82 | if (metrics == nullptr) { |
| 83 | exec_env_->codegen_cache_.reset(); |
| 84 | return; |
| 85 | } |
| 86 | exec_env_->codegen_cache_.reset(new CodeGenCache(metrics)); |
| 87 | } |
| 88 | |
| 89 | /// Get a full URI for the provided path based on the default filesystem. |
| 90 | std::string GetDefaultFsPath(const std::string& path); |
no test coverage detected