I have a database cluster based on Postgres-xl 10. I have to create a search index by ZomboDB extension. I copied all extension files into /usr/local/pgsql/lib
other than standard path of postgresql /usr/lib/pgsql/lib
. Because I checked that postgres-xl uses different $libdir
from postgresql.
When CREATE EXTENSION zombodb;
, it gives error:
ERROR: could not load library "/usr/local/pgsql/lib/zombodb.so": /usr/local/pgsql/lib/zombodb.so: undefined symbol: session_auth_is_superuser
SQL state: XX000
How can I overcome this problem?