forked from jayallen/melody
-
Notifications
You must be signed in to change notification settings - Fork 36
Database Known Issues
mikert edited this page Jul 19, 2011
·
1 revision
In PostgreSQL 9.0 or newer, you may see an error message like this while accessing Melody:
"Can't use string ("x42494e3a53455247000000000000000") as an ARRAY ref while "strict refs" in use"
The resolution for this issue is to make a small configuration change to PostgreSQL.
- Open postgresql.conf
- Find the line that begins with
bytea
and set it to this value:bytea = 'escape'
- Restart the PostgreSQL service (
pg_ctl reload
or check in the Windows services manager)