MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / array

Method array

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

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

(self)

Source from the content-addressed store, hash-verified

199 return _HStoreValsFunction(self.expr)
200
201 def array(self) -> Any:
202 """Text array expression. Returns array of alternating keys and
203 values.
204 """
205 return _HStoreArrayFunction(self.expr)
206
207 def matrix(self) -> Any:
208 """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