(self, item: str)
| 1241 | self.all_completions = set(self.keywords + self.functions) |
| 1242 | |
| 1243 | def maybe_quote_identifier(self, item: str) -> str: |
| 1244 | if item.startswith('`'): |
| 1245 | return item |
| 1246 | if item == '*': |
| 1247 | return item |
| 1248 | return '`' + item + '`' |
| 1249 | |
| 1250 | def quote_collection_if_needed( |
| 1251 | self, |
no outgoing calls