diff options
| author | Robert Haas | 2011-04-05 13:35:43 +0000 |
|---|---|---|
| committer | Robert Haas | 2011-04-05 13:35:43 +0000 |
| commit | f5e524d92be609c709825be8995bf77f10880c3b (patch) | |
| tree | 6b3a1754ad3c06f1146a632a77fcc56c7d23e1d1 /src/include/utils | |
| parent | 88f32b7ca29982f286b61a9d0dd29be4b8a01c25 (diff) | |
Add casts from int4 and int8 to numeric.
Joey Adams, per gripe from Ramanujam. Review by myself and Tom Lane.
Diffstat (limited to 'src/include/utils')
| -rw-r--r-- | src/include/utils/cash.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/utils/cash.h b/src/include/utils/cash.h index 81b51ad68f..3a491f9231 100644 --- a/src/include/utils/cash.h +++ b/src/include/utils/cash.h @@ -67,4 +67,7 @@ extern Datum cash_words(PG_FUNCTION_ARGS); extern Datum cash_numeric(PG_FUNCTION_ARGS); extern Datum numeric_cash(PG_FUNCTION_ARGS); +extern Datum int4_cash(PG_FUNCTION_ARGS); +extern Datum int8_cash(PG_FUNCTION_ARGS); + #endif /* CASH_H */ |
