(self, _, word_before_cursor)
| 793 | return self.find_matches(word_before_cursor, tables, meta="table") |
| 794 | |
| 795 | def get_table_formats(self, _, word_before_cursor): |
| 796 | formats = TabularOutputFormatter().supported_formats |
| 797 | return self.find_matches(word_before_cursor, formats, meta="table format") |
| 798 | |
| 799 | def get_view_matches(self, suggestion, word_before_cursor, alias=False): |
| 800 | views = self.populate_schema_objects(suggestion.schema, "views") |
nothing calls this directly
no test coverage detected