summaryrefslogtreecommitdiff
path: root/src/bin/psql/describe.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2008-07-12 10:44:56 +0000
committerPeter Eisentraut <peter_e@gmx.net>2008-07-12 10:44:56 +0000
commit96193aa80372d606f6c52e4d8cb93fca4993033a (patch)
treeadec4a109e830aa38125bab3d6b4a0a1dee5c4f9 /src/bin/psql/describe.c
parentc96439b5a0510f12e302a5b40a1b2d26dc52e140 (diff)
downloadpostgresql-96193aa80372d606f6c52e4d8cb93fca4993033a.tar.gz
More replacements of binary compatible to binary coercible.
Diffstat (limited to 'src/bin/psql/describe.c')
-rw-r--r--src/bin/psql/describe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index b571db9fd8..1e13bc3511 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -8,7 +8,7 @@
*
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.175 2008/07/03 15:59:55 petere Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.176 2008/07/12 10:44:56 petere Exp $
*/
#include "postgres_fe.h"
@@ -2002,14 +2002,14 @@ listCasts(const char *pattern)
initPQExpBuffer(&buf);
/*
* We need left join here for binary casts. Also note that we don't
- * attempt to localize '(binary compatible)', because there's too much
+ * attempt to localize '(binary coercible)', because there's too much
* risk of gettext translating a function name that happens to match
* some string in the PO database.
*/
printfPQExpBuffer(&buf,
"SELECT pg_catalog.format_type(castsource, NULL) AS \"%s\",\n"
" pg_catalog.format_type(casttarget, NULL) AS \"%s\",\n"
- " CASE WHEN castfunc = 0 THEN '(binary compatible)'\n"
+ " CASE WHEN castfunc = 0 THEN '(binary coercible)'\n"
" ELSE p.proname\n"
" END as \"%s\",\n"
" CASE WHEN c.castcontext = 'e' THEN '%s'\n"