summaryrefslogtreecommitdiff
path: root/contrib/intarray/sql
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-09-14 03:25:31 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-09-14 03:25:31 +0000
commit2d6cb170d4c5939950e8c25e08f554bdfd6050e4 (patch)
tree128c48fb413da45b30bb99439938b74d769c9be9 /contrib/intarray/sql
parentaa33bdd783f86ce9c552b66a08579b716a27bd6a (diff)
downloadpostgresql-2d6cb170d4c5939950e8c25e08f554bdfd6050e4.tar.gz
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.
Diffstat (limited to 'contrib/intarray/sql')
-rw-r--r--contrib/intarray/sql/_int.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/intarray/sql/_int.sql b/contrib/intarray/sql/_int.sql
index 481754057e..1588e3b514 100644
--- a/contrib/intarray/sql/_int.sql
+++ b/contrib/intarray/sql/_int.sql
@@ -111,7 +111,7 @@ SELECT count(*) from test__int WHERE a @> '{20,23}' or a @> '{50,68}';
SELECT count(*) from test__int WHERE a @@ '(20&23)|(50&68)';
DROP INDEX text_idx;
-CREATE INDEX text_idx on test__int using gin ( a );
+CREATE INDEX text_idx on test__int using gin ( a gin__int_ops );
SELECT count(*) from test__int WHERE a && '{23,50}';
SELECT count(*) from test__int WHERE a @@ '23|50';