Minor fix for pgbench documentation
Hi hackers,
Here is a patch that adds missing random_zipfian func to the paragraph
in pgbench documentation about random functions parameterization.
--
Ildar Musin
Postgres Professional: http://www.postgrespro.com
Russian Postgres Company
Attachments:
pgbench_doc_fix.patchtext/plain; charset=UTF-8; name=pgbench_doc_fix.patch; x-mac-creator=0; x-mac-type=0Download
diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml
index 3dd492c..7f2fc1f 100644
--- a/doc/src/sgml/ref/pgbench.sgml
+++ b/doc/src/sgml/ref/pgbench.sgml
@@ -1332,9 +1332,10 @@ pgbench <optional> <replaceable>options</replaceable> </optional> <replaceable>d
<para>
The <literal>random</literal> function generates values using a uniform
distribution, that is all the values are drawn within the specified
- range with equal probability. The <literal>random_exponential</literal> and
- <literal>random_gaussian</literal> functions require an additional double
- parameter which determines the precise shape of the distribution.
+ range with equal probability. The <literal>random_exponential</literal>,
+ <literal>random_gaussian</literal> and <literal>random_zipfian</literal>
+ functions require an additional double parameter which determines the precise
+ shape of the distribution.
</para>
<itemizedlist>
Here is a patch that adds missing random_zipfian func to the paragraph
in pgbench documentation about random functions parameterization.
Indeed.
Patch applies cleanly, doc build ok. Marked as "ready".
I have added it to the next commitfest.
--
Fabien.
Hello Fabien,
13/01/2018 19:30, Fabien COELHO пишет:
Here is a patch that adds missing random_zipfian func to the paragraph
in pgbench documentation about random functions parameterization.Indeed.
Patch applies cleanly, doc build ok. Marked as "ready".
I have added it to the next commitfest.
Thank you for your review!
--
Ildar Musin
Postgres Professional: http://www.postgrespro.com
Russian Postgres Company
On 2018-01-15 12:30:51 +0300, Ildar Musin wrote:
Hello Fabien,
13/01/2018 19:30, Fabien COELHO пишет:
Here is a patch that adds missing random_zipfian func to the paragraph
in pgbench documentation about random functions parameterization.Indeed.
Patch applies cleanly, doc build ok. Marked as "ready".
I have added it to the next commitfest.
Thank you for your review!
Pushed, thanks for patch & review!
- Andres