MCPcopy Index your code
hub / github.com/dbcli/pgcli / columns_functions_and_keywords

Method columns_functions_and_keywords

tests/metadata.py:112–113  ·  view source on GitHub ↗
(self, tbl, parent="public", typ="tables", pos=0)

Source from the content-addressed store, hash-verified

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)

Calls 2

columnsMethod · 0.95