Text array expression. Returns array of alternating keys and values.
(self)
| 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.""" |