(self, pos=0)
| 102 | ] |
| 103 | |
| 104 | def schemas(self, pos=0): |
| 105 | schemas = {sch for schs in self.metadata.values() for sch in schs} |
| 106 | return [schema(escape(s), pos=pos) for s in schemas] |
| 107 | |
| 108 | def functions_and_keywords(self, parent="public", pos=0): |
| 109 | return self.functions(parent, pos) + self.builtin_functions(pos) + self.keywords(pos) |