1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

- format_type function, in use by psql

- added bigint as synonym of int8
- set typelem of varlen non-array types to 0
This commit is contained in:
Peter Eisentraut
2000-07-07 19:24:43 +00:00
parent 364985542b
commit de85dd1d51
8 changed files with 255 additions and 115 deletions

View File

@ -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 */