citext_1.out, citext.out confusing comment - Mailing list pgsql-hackers

From jian he
Subject citext_1.out, citext.out confusing comment
Date
Msg-id CACJufxEwNvWyvjJ4WxuzihnW6RrQcUUDpPrfgiyr2k6bc9HMQQ@mail.gmail.com
Whole thread Raw
Responses Re: citext_1.out, citext.out confusing comment
List pgsql-hackers
hi.

While working on CAST DEFAULT, I found out citext_1.out, citext.out comments are
confusing.

contrib/citext/expected/citext_1.out:
SELECT 'a'::citext >= 'B'::text AS t;  -- text wins.
 t
---
 f
(1 row)


contrib/citext/expected/citext.out:
SELECT 'a'::citext >= 'B'::text AS t;  -- text wins.
 t
---
 t
(1 row)

same input, return different result,  The comment "-- text wins."
seems confusing.
(this happens in other places within citext.out, citext_1.out).



pgsql-hackers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: [Proposal] Adding callback support for custom statistics kinds
Next
From: Kirk Wolak
Date:
Subject: Re: [Patch] Add WHERE clause support to REFRESH MATERIALIZED VIEW