aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/numeric.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2017-06-21 16:02:08 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2017-06-21 16:02:08 -0400
commit780b3a4c43fd47867825d5d628e96a0966e63aa8 (patch)
tree506074faff27307b3395a01e458914ba964dbf91 /src/backend/utils/adt/numeric.c
parent81f056c7256f01a39ecc926bf6a4d2d1fa525633 (diff)
downloadpostgresql-780b3a4c43fd47867825d5d628e96a0966e63aa8.tar.gz
postgresql-780b3a4c43fd47867825d5d628e96a0966e63aa8.zip
Manually un-break a few URLs that pgindent used to insist on splitting.
These will no longer get re-split by pgindent runs, so it's worth cleaning them up now. Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
Diffstat (limited to 'src/backend/utils/adt/numeric.c')
-rw-r--r--src/backend/utils/adt/numeric.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 1d0ca1b7943..3e5614ece30 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -8175,8 +8175,7 @@ power_var_int(NumericVar *base, int exp, NumericVar *result, int rscale)
* While 0 ^ 0 can be either 1 or indeterminate (error), we treat
* it as 1 because most programming languages do this. SQL:2003
* also requires a return value of 1.
- * http://en.wikipedia.org/wiki/Exponentiation#Zero_to_the_zero_pow
- * er
+ * http://en.wikipedia.org/wiki/Exponentiation#Zero_to_the_zero_power
*/
set_var_from_var(&const_one, result);
result->dscale = rscale; /* no need to round */