projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f06fdae
)
src/backend/utils/adt/numeric.c fails to compile due to a string having
author
Bruce Momjian
<bruce@momjian.us>
Sun, 14 Mar 1999 16:49:32 +0000
(16:49 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Sun, 14 Mar 1999 16:49:32 +0000
(16:49 +0000)
an
embedded new-line character.
Billy G. Allie
src/backend/utils/adt/numeric.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/adt/numeric.c
b/src/backend/utils/adt/numeric.c
index dcd32d73c82b3d8b884fee2a89677225f49b68cc..730438fe0774a226eff8d8d77051aa700a1d68bf 100644
(file)
--- a/
src/backend/utils/adt/numeric.c
+++ b/
src/backend/utils/adt/numeric.c
@@
-2370,8
+2370,8
@@
apply_typmod(NumericVar *var, int32 typmod)
if (var->weight >= maxweight)
{
free_allvars();
- elog(ERROR, "overflow on numeric
- ABS(value) >= 10^%d for field with precision %d scale %d",
+ elog(ERROR, "overflow on numeric
"
+
"
ABS(value) >= 10^%d for field with precision %d scale %d",
var->weight, precision, scale);
}