Skip to content

Commit 54332c5

Browse files
author
Liudmila Mantrova
committed
DOC: bug fix based on A.Lakhin feedback
1 parent 9b58225 commit 54332c5

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

doc/src/sgml/installation-bin.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1020,13 +1020,13 @@ service postgresql start
10201020
</listitem>
10211021
<listitem>
10221022
<para>
1023-
<literal>Port</literal> &mdash; TCP/IP port to listen (5432)
1023+
<literal>Port</literal> &mdash; TCP/IP port to listen. Default: 5432.
10241024
</para>
10251025
</listitem>
10261026
<listitem>
10271027
<para>
10281028
<literal>SuperUser</literal> &mdash; name of the database user who
1029-
has admin rights in the database
1029+
will have admin rights in the database
10301030
</para>
10311031
</listitem>
10321032
<listitem>

doc/src/sgml/jsquery.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ CREATE EXTENSION jsquery;
396396
<listitem>
397397
<para>
398398
<literal># &gt;= 10 AND # &lt;= 20</literal> - there is an element
399-
great than or equal to 10 and another element less than or equal
399+
greater than or equal to 10 and another element less than or equal
400400
to 20. The query can be satisfied by an array with no elements
401401
between 10 and 20, for instance [0,30].
402402
</para>

doc/src/sgml/pgpathman.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ replace_hash_partition(old_partition REGCLASS,
239239
<function>create_range_partitions()</function> for range partitioning.
240240
This function creates
241241
partitions based on the specified interval and the initial
242-
partitioning key. New partitions are created automatically
242+
partitioning key value. New partitions are created automatically
243243
when you insert data outside of the already covered range.</para>
244244
<programlisting>
245245
create_range_partitions(relation REGCLASS,
@@ -488,13 +488,13 @@ SELECT * FROM pathman_partition_list;
488488
<para>Suppose you have the <structname>test</structname> table that stores some
489489
temporal data:
490490
<programlisting>
491-
create table test (logdate date not null, comment text);
491+
CREATE TABLE test (logdate date not null, comment text);
492492
</programlisting>
493493
</para>
494494
<para>
495495
To partition this data by month and year, you have to create a composite key:
496496
<programlisting>
497-
create type test_key as (year float8, month float8);
497+
CREATE TYPE test_key AS (year float8, month float8);
498498
</programlisting>
499499
</para>
500500
<para>
@@ -1187,7 +1187,7 @@ create_range_partitions(relation REGCLASS,
11871187
<literal>start_value</literal> argument specifies the initial value,
11881188
<literal>p_interval</literal> sets the default range for automatically created partitions or partitions created with
11891189
<function>append_range_partition()</function> or
1190-
<function>prepend_range_partition()</function>
1190+
<function>prepend_range_partition()</function>.
11911191
If <literal>p_interval</literal> is set to <literal>NULL</literal>, automatic partition creation
11921192
is disabled. <literal>p_count</literal> is the
11931193
number of premade partitions. If <literal>p_count</literal> is not set, than

doc/src/sgml/release-pro-9.6.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@
438438
<itemizedlist>
439439
<listitem>
440440
<para>Covering indices patch by Anastasia Lubennikova (Commit: 91b4e25614247833d7960c49d783f69b90c0c149)
441-
(Details: http://www.postgresql.org/message-id/f90aa60a-b67f-95b5-d9f5-f5d8ced178c6@postgrespro.ru/)</para>
441+
(Details: <ulink url="http://www.postgresql.org/message-id/f90aa60a-b67f-95b5-d9f5-f5d8ced178c6@postgrespro.ru/"></></para>
442442
<para>ICU patch (Commit: ee711324f31cc039e656ea45c54abd0cf8ea3e41)</para>
443443
<para>Fixes to win32 build system (Commit: 84fa653ee00ebe54f591b18e3664fa6d5889224f)</para>
444444
<para>Added pgpro_version SQL function and appropriate defines into

0 commit comments

Comments
 (0)