diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-07-07 19:24:43 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-07-07 19:24:43 +0000 |
commit | de85dd1d51ab7325984ef36302831ca21e3ae53e (patch) | |
tree | 384a5322e1b8dac3ce464ba8bf8206144b6a26e9 /src/include/utils/builtins.h | |
parent | 364985542ba58f2f43b5711941da26518f53c667 (diff) |
- format_type function, in use by psql
- added bigint as synonym of int8
- set typelem of varlen non-array types to 0
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index f6838a59382..eedc9766302 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.120 2000/07/06 05:48:30 tgl Exp $ + * $Id: builtins.h,v 1.121 2000/07/07 19:24:43 petere Exp $ * *------------------------------------------------------------------------- */ @@ -609,4 +609,7 @@ 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 */ +extern Datum format_type(PG_FUNCTION_ARGS); + #endif /* BUILTINS_H */ |