diff options
author | Peter Eisentraut | 2001-08-09 18:28:18 +0000 |
---|---|---|
committer | Peter Eisentraut | 2001-08-09 18:28:18 +0000 |
commit | 2e57875b97e8bf08e44352045197995d5d589a23 (patch) | |
tree | b79404ffee7e20f1d4ad1fbfdbdbd5c0d6fbeac9 /src/include | |
parent | 51e8dfddf10d5fd26a623c02700346c8bbf56b4c (diff) |
Use format_type sibling in backend error messages, so the user sees
consistent type naming.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 150acabc0a3..5fbb2cd755d 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.158 2001/07/16 05:07:00 tgl Exp $ + * $Id: builtins.h,v 1.159 2001/08/09 18:28:18 petere Exp $ * *------------------------------------------------------------------------- */ @@ -572,6 +572,7 @@ extern Datum PG_char_to_encoding(PG_FUNCTION_ARGS); /* format_type.c */ extern Datum format_type(PG_FUNCTION_ARGS); +extern char * format_type_be(Oid type_oid); extern Datum oidvectortypes(PG_FUNCTION_ARGS); extern int32 type_maximum_size(Oid type_oid, int32 typemod); |