MCPcopy
hub / github.com/dbcli/pgcli / views

Method views

tests/metadata.py:88–89  ·  view source on GitHub ↗
(self, parent="public", pos=0)

Source from the content-addressed store, hash-verified

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 [

Calls 1

escapeFunction · 0.85