1 /* contrib/intarray/intarray--1.3--1.4.sql */
3 -- complain if script is sourced in psql, rather than via ALTER EXTENSION
4 \echo Use "ALTER EXTENSION intarray UPDATE TO '1.4'" to load this file. \quit
6 -- Remove <@ from the GiST opclasses, as it's not usefully indexable
7 -- due to mishandling of empty arrays. (It's OK in GIN.)
9 ALTER OPERATOR FAMILY gist__int_ops USING gist
10 DROP OPERATOR 8 (_int4, _int4);
12 ALTER OPERATOR FAMILY gist__intbig_ops USING gist
13 DROP OPERATOR 8 (_int4, _int4);
15 -- Likewise for the old spelling ~.
17 ALTER OPERATOR FAMILY gist__int_ops USING gist
18 DROP OPERATOR 14 (_int4, _int4);
20 ALTER OPERATOR FAMILY gist__intbig_ops USING gist
21 DROP OPERATOR 14 (_int4, _int4);