diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-07-09 21:30:21 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-07-09 21:30:21 +0000 |
commit | b54faa1b15c9dea37d79995063a4e7d83e0159d3 (patch) | |
tree | dda8a176864c5ccb69111f85548a1654aaea1119 /src/include/utils/builtins.h | |
parent | f90771236d6679d67d5b723e0e4e5b46b05588ae (diff) |
oidvectortypes: use SQL type names and separate by commas
psql \df: use format_type and oidvectortypes
map type REAL to float4, not float8
psql \dd :work around UNION bug
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index e2c66f513d5..07e732f1e86 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.122 2000/07/08 03:04:36 tgl Exp $ + * $Id: builtins.h,v 1.123 2000/07/09 21:30:21 petere Exp $ * *------------------------------------------------------------------------- */ @@ -325,7 +325,6 @@ extern Datum texticregexne(PG_FUNCTION_ARGS); /* regproc.c */ extern Datum regprocin(PG_FUNCTION_ARGS); extern Datum regprocout(PG_FUNCTION_ARGS); -extern Datum oidvectortypes(PG_FUNCTION_ARGS); extern Datum regproctooid(PG_FUNCTION_ARGS); /* define macro to replace mixed-case function call - tgl 97/04/27 */ @@ -601,7 +600,8 @@ extern Datum getdatabaseencoding(PG_FUNCTION_ARGS); extern Datum PG_encoding_to_char(PG_FUNCTION_ARGS); extern Datum PG_char_to_encoding(PG_FUNCTION_ARGS); -/* formatting for internal types */ +/* format_type.c */ extern Datum format_type(PG_FUNCTION_ARGS); +extern Datum oidvectortypes(PG_FUNCTION_ARGS); #endif /* BUILTINS_H */ |