|
7 | 7 | * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California
|
9 | 9 | *
|
10 |
| - * $Id: builtins.h,v 1.148 2001/03/22 04:01:11 momjian Exp $ |
| 10 | + * $Id: builtins.h,v 1.149 2001/06/07 00:09:31 momjian Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -96,13 +96,15 @@ extern Datum int42le(PG_FUNCTION_ARGS);
|
96 | 96 | externDatumint42gt(PG_FUNCTION_ARGS);
|
97 | 97 | externDatumint42ge(PG_FUNCTION_ARGS);
|
98 | 98 | externDatumint4um(PG_FUNCTION_ARGS);
|
| 99 | +externDatumint4up(PG_FUNCTION_ARGS); |
99 | 100 | externDatumint4pl(PG_FUNCTION_ARGS);
|
100 | 101 | externDatumint4mi(PG_FUNCTION_ARGS);
|
101 | 102 | externDatumint4mul(PG_FUNCTION_ARGS);
|
102 | 103 | externDatumint4div(PG_FUNCTION_ARGS);
|
103 | 104 | externDatumint4abs(PG_FUNCTION_ARGS);
|
104 | 105 | externDatumint4inc(PG_FUNCTION_ARGS);
|
105 | 106 | externDatumint2um(PG_FUNCTION_ARGS);
|
| 107 | +externDatumint2up(PG_FUNCTION_ARGS); |
106 | 108 | externDatumint2pl(PG_FUNCTION_ARGS);
|
107 | 109 | externDatumint2mi(PG_FUNCTION_ARGS);
|
108 | 110 | externDatumint2mul(PG_FUNCTION_ARGS);
|
@@ -184,10 +186,12 @@ extern Datum float8in(PG_FUNCTION_ARGS);
|
184 | 186 | externDatumfloat8out(PG_FUNCTION_ARGS);
|
185 | 187 | externDatumfloat4abs(PG_FUNCTION_ARGS);
|
186 | 188 | externDatumfloat4um(PG_FUNCTION_ARGS);
|
| 189 | +externDatumfloat4up(PG_FUNCTION_ARGS); |
187 | 190 | externDatumfloat4larger(PG_FUNCTION_ARGS);
|
188 | 191 | externDatumfloat4smaller(PG_FUNCTION_ARGS);
|
189 | 192 | externDatumfloat8abs(PG_FUNCTION_ARGS);
|
190 | 193 | externDatumfloat8um(PG_FUNCTION_ARGS);
|
| 194 | +externDatumfloat8up(PG_FUNCTION_ARGS); |
191 | 195 | externDatumfloat8larger(PG_FUNCTION_ARGS);
|
192 | 196 | externDatumfloat8smaller(PG_FUNCTION_ARGS);
|
193 | 197 | externDatumfloat4pl(PG_FUNCTION_ARGS);
|
@@ -532,6 +536,7 @@ extern Datum numeric_out(PG_FUNCTION_ARGS);
|
532 | 536 | externDatumnumeric(PG_FUNCTION_ARGS);
|
533 | 537 | externDatumnumeric_abs(PG_FUNCTION_ARGS);
|
534 | 538 | externDatumnumeric_uminus(PG_FUNCTION_ARGS);
|
| 539 | +externDatumnumeric_uplus(PG_FUNCTION_ARGS); |
535 | 540 | externDatumnumeric_sign(PG_FUNCTION_ARGS);
|
536 | 541 | externDatumnumeric_round(PG_FUNCTION_ARGS);
|
537 | 542 | externDatumnumeric_trunc(PG_FUNCTION_ARGS);
|
|