Returns true if the given table alias refers to a FLATTEN relation.
(&self, alias: &str)
| 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 { |
| 195 | self.flatten_table_aliases.iter().any(|a| a == alias) |
| 196 | } |
| 197 | |
| 198 | /// Returns the most recently generated flatten alias, or `None` if |
| 199 | /// `next_flatten_alias` has not been called yet. |
no test coverage detected