diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-07-08 14:10:30 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-07-08 14:10:30 +0000 |
commit | bad339827e3291bba38b78f0c5f68b436a6b7d10 (patch) | |
tree | 4fc072f234eada2a6665e13f5cf70dcff908fbce /src/include/utils/builtins.h | |
parent | 0f0d51b858896ac1bef42ed41b2198704eca89e1 (diff) | |
download | postgresql-bad339827e3291bba38b78f0c5f68b436a6b7d10.tar.gz postgresql-bad339827e3291bba38b78f0c5f68b436a6b7d10.zip |
Add int8 8-byte integer type.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 323a42ea70b..c672e42c27b 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -6,12 +6,16 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.44 1998/06/16 06:41:51 momjian Exp $ + * $Id: builtins.h,v 1.45 1998/07/08 14:10:30 thomas Exp $ * * NOTES * This should normally only be included by fmgr.h. * Under no circumstances should it ever be included before * including fmgr.h! + * fmgr.h does not seem to include this file, so don't know where this + * comment came from. Backend code must include this stuff explicitly + * as far as I can tell... + * - thomas 1998-06-08 * *------------------------------------------------------------------------- */ @@ -22,6 +26,7 @@ #include <utils/geo_decls.h> #include <utils/datetime.h> #include <utils/nabstime.h> +#include <utils/int8.h> #include <utils/cash.h> #include <utils/rel.h> |