(self, parent="public", pos=0)
| 116 | return self.functions(parent, pos) + self.views(parent, pos) + self.tables(parent, pos) |
| 117 | |
| 118 | def schemas_and_from_clause_items(self, parent="public", pos=0): |
| 119 | return self.from_clause_items(parent, pos) + self.schemas(pos) |
| 120 | |
| 121 | def types(self, parent="public", pos=0): |
| 122 | return self.datatypes(parent, pos) + self.tables(parent, pos) |