(self, parent="public", pos=0)
| 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) |
| 110 | |
| 111 | # Note that the filtering parameters here only apply to the columns |
| 112 | def columns_functions_and_keywords(self, tbl, parent="public", typ="tables", pos=0): |