summaryrefslogtreecommitdiff
path: root/contrib/citext
diff options
context:
space:
mode:
authorTom Lane2009-08-04 18:49:50 +0000
committerTom Lane2009-08-04 18:49:50 +0000
commitbcba09e27c0ca093b1b3fa92dee2acd0bf30efee (patch)
treed8c3d92ccac1de439631b0f5a11f4a9b64d16092 /contrib/citext
parent5b8ee5c128cc90c13d909db72f93eb9674ac7aed (diff)
Ooops, missed that a couple of contrib modules have calls to byteacmp.
Add bytea.h inclusions as needed. Some of the contrib regression tests need to be de-hexified, too. Per buildfarm.
Diffstat (limited to 'contrib/citext')
-rw-r--r--contrib/citext/expected/citext.out12
-rw-r--r--contrib/citext/expected/citext_1.out12
-rw-r--r--contrib/citext/sql/citext.sql3
3 files changed, 0 insertions, 27 deletions
diff --git a/contrib/citext/expected/citext.out b/contrib/citext/expected/citext.out
index 34ce3da3ee5..21e73be2d75 100644
--- a/contrib/citext/expected/citext.out
+++ b/contrib/citext/expected/citext.out
@@ -737,18 +737,6 @@ SELECT 'f'::citext::"char" = 'f'::"char" AS t;
t
(1 row)
-SELECT 'foo'::bytea::citext = 'foo' AS t;
- t
----
- t
-(1 row)
-
-SELECT 'foo'::citext::bytea = 'foo'::bytea AS t;
- t
----
- t
-(1 row)
-
SELECT '100'::money::citext = '$100.00' AS t;
t
---
diff --git a/contrib/citext/expected/citext_1.out b/contrib/citext/expected/citext_1.out
index cc03e234ed2..5fa537bc198 100644
--- a/contrib/citext/expected/citext_1.out
+++ b/contrib/citext/expected/citext_1.out
@@ -737,18 +737,6 @@ SELECT 'f'::citext::"char" = 'f'::"char" AS t;
t
(1 row)
-SELECT 'foo'::bytea::citext = 'foo' AS t;
- t
----
- t
-(1 row)
-
-SELECT 'foo'::citext::bytea = 'foo'::bytea AS t;
- t
----
- t
-(1 row)
-
SELECT '100'::money::citext = '$100.00' AS t;
t
---
diff --git a/contrib/citext/sql/citext.sql b/contrib/citext/sql/citext.sql
index 52999c2e634..9014e5d931a 100644
--- a/contrib/citext/sql/citext.sql
+++ b/contrib/citext/sql/citext.sql
@@ -226,9 +226,6 @@ SELECT 'f'::citext::char = 'f'::char AS t;
SELECT 'f'::"char"::citext = 'f' AS t;
SELECT 'f'::citext::"char" = 'f'::"char" AS t;
-SELECT 'foo'::bytea::citext = 'foo' AS t;
-SELECT 'foo'::citext::bytea = 'foo'::bytea AS t;
-
SELECT '100'::money::citext = '$100.00' AS t;
SELECT '100'::citext::money = '100'::money AS t;