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
Postgres just committed support for binary format, but it is not released yet: https://commitfest.postgresql.org/24/2242/. In the mean time, you can (easily?) treat ltrees as TEXT which does work over the binary channel using select ltree2text(my_tree) and insert via insert int my_table (my_tree) values ($1::text::ltree).
https://www.postgresql.org/docs/current/ltree.html
Requires remembering type format preferences and telling postgres about this at prepare/bind time.
ltree
does not support the binary format.https://github.com/launchbadge/sqlx/blob/master/sqlx-core/src/postgres/arguments.rs#L30
The text was updated successfully, but these errors were encountered: