| 139 | } |
| 140 | |
| 141 | int64_t TestEnv::TotalQueryMemoryConsumption() { |
| 142 | int64_t total = 0; |
| 143 | for (QueryState* query_state : query_states_) { |
| 144 | total += query_state->query_mem_tracker()->consumption(); |
| 145 | } |
| 146 | return total; |
| 147 | } |
| 148 | |
| 149 | std::string TestEnv::GetDefaultFsPath(const std::string& path) { |
| 150 | const char* filesystem_prefix = getenv("FILESYSTEM_PREFIX"); |
no test coverage detected