citext_1.out, citext.out confusing comment
jian he <jian.universality@gmail.com>
From: jian he <jian.universality@gmail.com>
To: PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2025-12-09T05:07:29Z
Lists: 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).