diff options
author | Tom Lane | 2009-04-26 02:47:05 +0000 |
---|---|---|
committer | Tom Lane | 2009-04-26 02:47:05 +0000 |
commit | 7ba050d20b7fc06d298ed88a7f08b18c398c3679 (patch) | |
tree | e57b8b499a8c40590a9ed6535f543884972937a9 | |
parent | 7c0c33391882010918eb594f1875191085e02eb6 (diff) |
Update citext expected output to exactly match the real output, rather
than having some whitespace discrepancy. Although whitespace is supposed
to be ignored in our regression tests, for some reason buildfarm member
spoonbill doesn't like it.
-rw-r--r-- | contrib/citext/expected/citext.out | 2 | ||||
-rw-r--r-- | contrib/citext/expected/citext_1.out | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/citext/expected/citext.out b/contrib/citext/expected/citext.out index c3dfc95803..3694cb8b5b 100644 --- a/contrib/citext/expected/citext.out +++ b/contrib/citext/expected/citext.out @@ -216,7 +216,7 @@ SELECT citext_cmp('AARDVARK'::citext, 'AARDVARK'::citext) AS zero; SELECT citext_cmp('B'::citext, 'a'::citext) > 0 AS true; true ------ - t + t (1 row) -- Do some tests using a table and index. diff --git a/contrib/citext/expected/citext_1.out b/contrib/citext/expected/citext_1.out index 49a6817aef..1a6bcdf0bc 100644 --- a/contrib/citext/expected/citext_1.out +++ b/contrib/citext/expected/citext_1.out @@ -216,7 +216,7 @@ SELECT citext_cmp('AARDVARK'::citext, 'AARDVARK'::citext) AS zero; SELECT citext_cmp('B'::citext, 'a'::citext) > 0 AS true; true ------ - t + t (1 row) -- Do some tests using a table and index. |