remove_space_from_numeric_function.patch
application/octet-stream
Filename: remove_space_from_numeric_function.patch
Type: application/octet-stream
Part: 0
Message:
Remove extra spaces
Patch
Format: unified
| File | + | − |
|---|---|---|
| src/backend/utils/adt/numeric.c | 1 | 1 |
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 644d7d3..c9502f9 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -1160,7 +1160,7 @@ numeric_support(PG_FUNCTION_ARGS)
* scale of the attribute have to be applied on the value.
*/
Datum
-numeric (PG_FUNCTION_ARGS)
+numeric(PG_FUNCTION_ARGS)
{
Numeric num = PG_GETARG_NUMERIC(0);
int32 typmod = PG_GETARG_INT32(1);