xoip <[email protected]> writes:
> CREATE SCHEMA inty AUTHORIZATION psql_user;
> CREATE EXTENSION intarray SCHEMA inty;
> SELECT inty.uniq(ARRAY[1,2,3]); --> OK, result: {1,2,3}
> How can I access the operator with inty schema?
The easy way is to change your search_path to include inty.
If you really don't want to do that, you can write
OPERATOR(inty.+)
but that's pretty inconvenient.
regards, tom lane
--
Sent via pgsql-general mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general