diff options
| author | Tom Lane | 2000-05-28 17:56:29 +0000 |
|---|---|---|
| committer | Tom Lane | 2000-05-28 17:56:29 +0000 |
| commit | 0a7fb4e9184539afcb6fed0f1d2bc0abddc2b0a6 (patch) | |
| tree | affcce1c5b6367468fb6dcfd2790585f2e967629 /src/include/utils/int8.h | |
| parent | 5005bb060b3f3a82cd1bd662c7f8946c9be59db5 (diff) | |
First round of changes for new fmgr interface. fmgr itself and the
key call sites are changed, but most called functions are still oldstyle.
An exception is that the PL managers are updated (so, for example, NULL
handling now behaves as expected in plperl and plpgsql functions).
NOTE initdb is forced due to added column in pg_proc.
Diffstat (limited to 'src/include/utils/int8.h')
| -rw-r--r-- | src/include/utils/int8.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/src/include/utils/int8.h b/src/include/utils/int8.h index dab1e0addd1..b8ad531ab28 100644 --- a/src/include/utils/int8.h +++ b/src/include/utils/int8.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: int8.h,v 1.20 2000/04/12 17:16:55 momjian Exp $ + * $Id: int8.h,v 1.21 2000/05/28 17:56:20 tgl Exp $ * * NOTES * These data types are supported on all 64-bit architectures, and may @@ -24,28 +24,6 @@ #ifndef INT8_H #define INT8_H -#ifdef HAVE_LONG_INT_64 -/* Plain "long int" fits, use it */ -typedef long int int64; - -#else -#ifdef HAVE_LONG_LONG_INT_64 -/* We have working support for "long long int", use that */ -typedef long long int int64; - -#else -/* Won't actually work, but fall back to long int so that int8.c compiles */ -typedef long int int64; - -#define INT64_IS_BUSTED -#endif -#endif - -/* this should be set in config.h: */ -#ifndef INT64_FORMAT -#define INT64_FORMAT "%ld" -#endif - extern int64 *int8in(char *str); extern char *int8out(int64 *val); |
