(self, suggestion, word_before_cursor)
| 805 | return self.find_matches(word_before_cursor, views, meta="view") |
| 806 | |
| 807 | def get_alias_matches(self, suggestion, word_before_cursor): |
| 808 | aliases = suggestion.aliases |
| 809 | return self.find_matches(word_before_cursor, aliases, meta="table alias") |
| 810 | |
| 811 | def get_database_matches(self, _, word_before_cursor): |
| 812 | return self.find_matches(word_before_cursor, self.databases, meta="database") |
nothing calls this directly
no test coverage detected