diff --git a/contrib/citext/expected/citext.out b/contrib/citext/expected/citext.out index 000c9256422051cafaea5e5e5c9d363a6819626c..a6265d857dc0dfa3eaaec43ffb2d5e6daba06f49 100644 --- a/contrib/citext/expected/citext.out +++ b/contrib/citext/expected/citext.out @@ -325,6 +325,7 @@ VALUES ('aardvark'), ('aba'), ('ABC'), ('abd'); +CREATE INDEX srt_name ON srt (name); -- Check the min() and max() aggregates, with and without index. set enable_seqscan = off; SELECT MIN(name) AS "AAA" FROM srt; diff --git a/contrib/citext/expected/citext_1.out b/contrib/citext/expected/citext_1.out index 8373dc88469d7580a1f0b76440fdee885fc63b5a..36342be7c1da0c6163e2fbc8bcaff932592a14ff 100644 --- a/contrib/citext/expected/citext_1.out +++ b/contrib/citext/expected/citext_1.out @@ -325,6 +325,7 @@ VALUES ('aardvark'), ('aba'), ('ABC'), ('abd'); +CREATE INDEX srt_name ON srt (name); -- Check the min() and max() aggregates, with and without index. set enable_seqscan = off; SELECT MIN(name) AS "AAA" FROM srt; diff --git a/contrib/citext/sql/citext.sql b/contrib/citext/sql/citext.sql index 07497401a4d123e12c6ce168ab781573e40b9651..65ef05b931267fad61432ca9c7caf2553d3d75b6 100644 --- a/contrib/citext/sql/citext.sql +++ b/contrib/citext/sql/citext.sql @@ -127,6 +127,8 @@ VALUES ('aardvark'), ('ABC'), ('abd'); +CREATE INDEX srt_name ON srt (name); + -- Check the min() and max() aggregates, with and without index. set enable_seqscan = off; SELECT MIN(name) AS "AAA" FROM srt;