(self, tbl, parent="public", typ="tables", pos=0)
| 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): |
| 113 | return self.functions_and_keywords(pos=pos) + self.columns(tbl, parent, typ, pos) |
| 114 | |
| 115 | def from_clause_items(self, parent="public", pos=0): |
| 116 | return self.functions(parent, pos) + self.views(parent, pos) + self.tables(parent, pos) |