From 591fb289c3eef010ee1bb271a54fab7da385c4cd Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 24 May 2019 11:16:06 -0400 Subject: [PATCH] Doc: fix typo in pgbench random_zipfian() documentation. Per bug #15819 from Koizumi Satoru. Discussion: https://postgr.es/m/15819-e6191bef1f7334c0@postgresql.org --- doc/src/sgml/ref/pgbench.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml index ef22a484e7..e3b73a4cf5 100644 --- a/doc/src/sgml/ref/pgbench.sgml +++ b/doc/src/sgml/ref/pgbench.sgml @@ -1561,7 +1561,7 @@ f(x) = PHI(2.0 * parameter * (x - mu) / (max - min + 1)) / For example, random_zipfian(1, ..., 2.5) produces the value 1 about (2/1)**2.5 = 5.66 times more frequently than 2, which - itself is produced (3/2)*2.5 = 2.76 times more + itself is produced (3/2)**2.5 = 2.76 times more frequently than 3, and so on. -- 2.40.0