summaryrefslogtreecommitdiff
path: root/contrib/intarray/expected
diff options
context:
space:
mode:
authorTom Lane2007-09-14 03:25:31 +0000
committerTom Lane2007-09-14 03:25:31 +0000
commit2d6cb170d4c5939950e8c25e08f554bdfd6050e4 (patch)
tree128c48fb413da45b30bb99439938b74d769c9be9 /contrib/intarray/expected
parentaa33bdd783f86ce9c552b66a08579b716a27bd6a (diff)
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/expected')
-rw-r--r--contrib/intarray/expected/_int.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/intarray/expected/_int.out b/contrib/intarray/expected/_int.out
index 140aa20a172..596439d3149 100644
--- a/contrib/intarray/expected/_int.out
+++ b/contrib/intarray/expected/_int.out
@@ -516,7 +516,7 @@ SELECT count(*) from test__int WHERE a @@ '(20&23)|(50&68)';
(1 row)
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}';
count
-------