Create index on srt table in citext regression tests.

Comments and the tests make clear that the intent is to test with
and without an index, but there was no index.
pull/6/head
Kevin Grittner 12 years ago
parent f0e86930dd
commit a49d0b75ce
  1. 1
      contrib/citext/expected/citext.out
  2. 1
      contrib/citext/expected/citext_1.out
  3. 2
      contrib/citext/sql/citext.sql

@ -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;

@ -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;

@ -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;

Loading…
Cancel
Save