Register a table alias as pointing to a LATERAL FLATTEN relation.
(&mut self, alias: String)
| 182 | |
| 183 | /// Register a table alias as pointing to a LATERAL FLATTEN relation. |
| 184 | pub fn add_flatten_table_alias(&mut self, alias: String) { |
| 185 | self.flatten_table_aliases.push(alias); |
| 186 | } |
| 187 | |
| 188 | /// Returns true if no FLATTEN table aliases have been registered. |
| 189 | pub fn flatten_table_aliases_empty(&self) -> bool { |
no test coverage detected