| 147 | } |
| 148 | |
| 149 | std::string TestEnv::GetDefaultFsPath(const std::string& path) { |
| 150 | const char* filesystem_prefix = getenv("FILESYSTEM_PREFIX"); |
| 151 | if (filesystem_prefix != nullptr && filesystem_prefix[0] != '\0') { |
| 152 | return Substitute("$0$1", filesystem_prefix, path); |
| 153 | } |
| 154 | return Substitute("$0$1", exec_env_->default_fs(), path); |
| 155 | } |
| 156 | |
| 157 | Status TestEnv::CreateQueryState( |
| 158 | int64_t query_id, const TQueryOptions* query_options, RuntimeState** runtime_state) { |
no test coverage detected