Hi,
A unique constraint is set on (KEYA, KEYB) with:
ALTER TABLE table ADD CONSTRAINT NAME UNIQUE (KEYA, KEYB).
I am trying to use:
SELECT col_is_unique(table, ARRAY[KEYA, KEYB])
but keep failing with the following error:
Index NAME should be unique.
I did make sure the constraint was set properly and check with psql (\d). Using PG 11
Any idea ?
Thanks