(&self)
| 152 | } |
| 153 | |
| 154 | pub fn data_evolution_enabled(&self) -> bool { |
| 155 | self.options |
| 156 | .get(DATA_EVOLUTION_ENABLED_OPTION) |
| 157 | .map(|value| value.eq_ignore_ascii_case("true")) |
| 158 | .unwrap_or(false) |
| 159 | } |
| 160 | |
| 161 | pub fn global_index_enabled(&self) -> bool { |
| 162 | self.options |
no test coverage detected