(relation: &ast::TableFactor)
| 478 | } |
| 479 | |
| 480 | fn extract_table_name(relation: &ast::TableFactor) -> Option<String> { |
| 481 | match relation { |
| 482 | ast::TableFactor::Table { name, .. } => normalize_object_name_checked(name).ok(), |
| 483 | _ => None, |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | fn extract_table_alias(relation: &ast::TableFactor) -> Option<String> { |
| 488 | match relation { |
no test coverage detected