diff options
| author | Bruce Momjian <bruce@momjian.us> | 2001-06-07 00:09:32 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2001-06-07 00:09:32 +0000 |
| commit | ba17165f55fefd342c0c79fee75b7cb1a830214b (patch) | |
| tree | a79d1b988b98976c467c0470566c5160f90b15db /src/include/utils/int8.h | |
| parent | a6697b361460da9e88d949aa404164183528b094 (diff) | |
| download | postgresql-ba17165f55fefd342c0c79fee75b7cb1a830214b.tar.gz | |
This adds unary plus capability. No grammar changes, per Tom's request.
Marko Kreen
Diffstat (limited to 'src/include/utils/int8.h')
| -rw-r--r-- | src/include/utils/int8.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/int8.h b/src/include/utils/int8.h index 4130bec64f..2b96d83791 100644 --- a/src/include/utils/int8.h +++ b/src/include/utils/int8.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: int8.h,v 1.25 2001/01/24 19:43:28 momjian Exp $ + * $Id: int8.h,v 1.26 2001/06/07 00:09:32 momjian Exp $ * * NOTES * These data types are supported on all 64-bit architectures, and may @@ -66,6 +66,7 @@ extern Datum int28le(PG_FUNCTION_ARGS); extern Datum int28ge(PG_FUNCTION_ARGS); extern Datum int8um(PG_FUNCTION_ARGS); +extern Datum int8up(PG_FUNCTION_ARGS); extern Datum int8pl(PG_FUNCTION_ARGS); extern Datum int8mi(PG_FUNCTION_ARGS); extern Datum int8mul(PG_FUNCTION_ARGS); |
