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=# CREATE EXTENSION zson;
ERROR: could not load library "/usr/lib/postgresql/12/lib/zson.so": /usr/lib/postgresql/12/lib/zson.so: undefined symbol: PG_RETURN_JSONB
I believe PG_RETURN_JSONB needs to be switched out to PG_RETURN_JSONB_P, and PG_GETARG_JSONB switched out for PG_GETARG_JSONB_P (I see a similar change made in another extension)
The text was updated successfully, but these errors were encountered:
I believe
PG_RETURN_JSONB
needs to be switched out toPG_RETURN_JSONB_P
, andPG_GETARG_JSONB
switched out forPG_GETARG_JSONB_P
(I see a similar change made in another extension)The text was updated successfully, but these errors were encountered: