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
Blink.Adapter.Postgres now encodes Elixir lists as PostgreSQL array literals ({...}), so int[], text[], jsonb[] and nested-array columns can be seeded by passing plain lists. A JSONB column holding a top-level JSON array should still be passed as a pre-encoded JSON string.
Changed
Lists are now encoded as array literals instead of falling through to to_string/1. Most lists previously corrupted the value or raised, but a charlist happened to coerce to text — so a charlist value for a text column now produces an array literal. Pass a binary string for text columns.