1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Remove ill-considered (not to mention undocumented) attempt to make

contrib/intarray's GIN opclass override the built-in default.  Per bug #3048
and other complaints.
This commit is contained in:
Tom Lane
2007-09-14 03:25:37 +00:00
parent cfa22b8d20
commit 62c42d82aa
5 changed files with 6 additions and 14 deletions

View File

@ -123,8 +123,3 @@ DROP FUNCTION boolop(_int4, query_int);
DROP FUNCTION querytree(query_int);
DROP TYPE query_int CASCADE;
update pg_opclass set opcdefault = 't' where
pg_opclass.opcamid = (select pg_am.oid from pg_am where amname='gin') and
opcname = '_int4_ops';