aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/numeric.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-07-16 10:44:06 +0200
committerPeter Eisentraut <peter_e@gmx.net>2018-07-16 10:48:05 +0200
commita06e56b247feb2812bad5cf60fd9c0128d81f5c0 (patch)
treed1ff92ce2a479bf352d0ee8883c461198ef411b7 /src/backend/utils/adt/numeric.c
parent1007b0a126c608b530fd2914825f1e6d133cb649 (diff)
downloadpostgresql-a06e56b247feb2812bad5cf60fd9c0128d81f5c0.tar.gz
postgresql-a06e56b247feb2812bad5cf60fd9c0128d81f5c0.zip
doc: Update redirecting links
Update links that resulted in redirects. Most are changes from http to https, but there are also some other minor edits. (There are still some redirects where the target URL looks less elegant than the one we currently have. I have left those as is.)
Diffstat (limited to 'src/backend/utils/adt/numeric.c')
-rw-r--r--src/backend/utils/adt/numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c
index 82a14295ee1..4d5042b2780 100644
--- a/src/backend/utils/adt/numeric.c
+++ b/src/backend/utils/adt/numeric.c
@@ -8353,7 +8353,7 @@ power_var_int(const 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_power
+ * https://en.wikipedia.org/wiki/Exponentiation#Zero_to_the_zero_power
*/
set_var_from_var(&const_one, result);
result->dscale = rscale; /* no need to round */