(name, ref)
| 491 | tables, suggestion.local_tables) |
| 492 | |
| 493 | def make_cand(name, ref): |
| 494 | synonyms = (name, generate_alias(self.case(name))) |
| 495 | return Candidate(qualify(name, ref), 0, 'column', synonyms) |
| 496 | |
| 497 | def flat_cols(): |
| 498 | return [make_cand(c.name, t.ref) |
nothing calls this directly
no test coverage detected