MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / array

Method array

lib/sqlalchemy/dialects/postgresql/hstore.py:184–188  ·  view source on GitHub ↗

Text array expression. Returns array of alternating keys and values.

(self)

Source from the content-addressed store, hash-verified

182 return _HStoreValsFunction(self.expr)
183
184 def array(self):
185 """Text array expression. Returns array of alternating keys and
186 values.
187 """
188 return _HStoreArrayFunction(self.expr)
189
190 def matrix(self):
191 """Text array expression. Returns array of [key, value] pairs."""

Callers 15

_index_queryMethod · 0.80
__init__Method · 0.80
processMethod · 0.80
test_array_expressionMethod · 0.80
test_plain_old_unnestMethod · 0.80

Calls 1