(self, parent="public", pos=0)
| 86 | return [table(escape(x), pos) for x in self.metadata.get("tables", {}).get(parent, [])] |
| 87 | |
| 88 | def views(self, parent="public", pos=0): |
| 89 | return [view(escape(x), pos) for x in self.metadata.get("views", {}).get(parent, [])] |
| 90 | |
| 91 | def functions(self, parent="public", pos=0): |
| 92 | return [ |