(name, ref)
| 502 | scoped_cols = self.populate_scoped_cols(tables, suggestion.local_tables) |
| 503 | |
| 504 | def make_cand(name, ref): |
| 505 | synonyms = (name, generate_alias(self.case(name), alias_map=self.alias_map)) |
| 506 | return Candidate(qualify(name, ref), 0, "column", synonyms) |
| 507 | |
| 508 | def flat_cols(): |
| 509 | return [make_cand(c.name, t.ref) for t, cols in scoped_cols.items() for c in cols] |
nothing calls this directly
no test coverage detected