You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently reading from a postgres database that has data in hstore format, I get PanicException: not implemented: hstore
Hstore is a key-value format, similar to jsonb. https://www.postgresql.org/docs/14/hstore.html
Supporting it could be a worthwhile addition. It could be parsed into a dictionary or passed through as a string.
The text was updated successfully, but these errors were encountered:
Hi, we have add the support for HSTORE (convert to string) in 0.2.3 release. However since the underlying's driver does not support this type in copy_out, we can only support this in the cursor protocol. For binary and csv protocol, a workaround is to convert the HSTORE column to string directly in the sql query.
Currently reading from a postgres database that has data in hstore format, I get
PanicException: not implemented: hstore
Hstore is a key-value format, similar to jsonb. https://www.postgresql.org/docs/14/hstore.html
Supporting it could be a worthwhile addition. It could be parsed into a dictionary or passed through as a string.
The text was updated successfully, but these errors were encountered: