diff -U3 /home/postgres/postgres/contrib/citext/expected/citext_utf8.out /home/postgres/postgres/build/testrun/citext/regress/results/citext_utf8.out --- /home/postgres/postgres/contrib/citext/expected/citext_utf8.out 2025-12-03 01:45:47.038099085 +0000 +++ /home/postgres/postgres/build/testrun/citext/regress/results/citext_utf8.out 2025-12-03 01:48:27.173723031 +0000 @@ -30,7 +30,7 @@ SELECT 'À'::citext = 'à'::citext AS t; t --- - t + f (1 row) SELECT 'À'::text = 'à'::text AS f; -- text wins. @@ -64,7 +64,7 @@ SELECT 'i'::citext = 'İ'::citext AS t; t --- - t + f (1 row) -- Regression. @@ -83,7 +83,7 @@ SELECT 'Ask Bjørn Hansen'::citext = 'ASK BJØRN HANSEN'::citext AS t; t --- - t + f (1 row) SELECT 'Ask Bjørn Hansen'::citext <> 'Ask Bjorn Hansen'::citext AS t; @@ -113,7 +113,7 @@ SELECT citext_cmp('Ask Bjørn Hansen'::citext, 'ASK BJØRN HANSEN'::citext) = 0 AS t; t --- - t + f (1 row) SELECT citext_cmp('Ask Bjørn Hansen'::citext, 'Ask Bjorn Hansen'::citext) > 0 AS t; @@ -138,14 +138,14 @@ SELECT 'à'::citext ~<=~ 'À'::citext AS t; t --- - t + f (1 row) -- Test ~>~ and ~>=~ SELECT 'à'::citext ~>~ 'À'::citext AS f; f --- - f + t (1 row) SELECT 'à'::citext ~>=~ 'À'::citext AS t;