Returns true if no FLATTEN table aliases have been registered.
(&self)
| 187 | |
| 188 | /// Returns true if no FLATTEN table aliases have been registered. |
| 189 | pub fn flatten_table_aliases_empty(&self) -> bool { |
| 190 | self.flatten_table_aliases.is_empty() |
| 191 | } |
| 192 | |
| 193 | /// Returns true if the given table alias refers to a FLATTEN relation. |
| 194 | pub fn is_flatten_table_alias(&self, alias: &str) -> bool { |
no test coverage detected