(tables: list[tuple[str | None, str, str]])
| 136 | |
| 137 | |
| 138 | def _aliases(tables: list[tuple[str | None, str, str]]) -> list[str]: |
| 139 | return [alias or table for (schema, table, alias) in tables] |
| 140 | |
| 141 | |
| 142 | def _emit_none_token(_ctx: SuggestContext) -> list[Suggestion]: |
no outgoing calls