Skip to content

Commit 5a9a62c

Browse files
committed
[Doc]: fix productname in pgpathman.sgml
1 parent 2ef2704 commit 5a9a62c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

doc/src/sgml/pgpathman.sgml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@
55
partitioning mechanism and functions to manage partitions.
66
</para>
77
<para>
8-
The extension is compatible with &productname; 9.5 (9.6 support is
9-
coming soon).
8+
The extension is compatible with &productname; 9.5, 9.6.
109
</para>
1110
<sect2 id="pg-pathman-overview">
1211
<title>Overview</title>
1312
<para>
1413
<emphasis role="strong">Partitioning</emphasis> means splitting
1514
one large table into smaller pieces. Each row in such table is
1615
moved to a single partition according to the partitioning key.
17-
&productname; supports partitioning via table inheritance: each
16+
PostgreSQL supports partitioning via table inheritance: each
1817
partition must be created as a child table with CHECK CONSTRAINT.
1918
For example:
2019
</para>
@@ -128,7 +127,7 @@ CREATE EXTENSION pg_pathman;
128127
<emphasis role="strong">Important:</emphasis> Don't forget to
129128
set the <literal>PG_CONFIG</literal> variable in case you want
130129
to test <literal>pg_pathman</literal> on a custom build of
131-
&productname;. Read more
130+
PostgreSQL. Read more
132131
<ulink url="https://wiki.postgresql.org/wiki/Building_and_Installing_PostgreSQL_Extension_Modules">here</ulink>.
133132
</para>
134133
</blockquote>
@@ -344,7 +343,7 @@ set_enable_parent(relation REGCLASS, value BOOLEAN)
344343
</programlisting>
345344
<para>
346345
Include/exclude parent table into/from query plan. In original
347-
&productname; planner parent table is always included into query
346+
PostgreSQL planner parent table is always included into query
348347
plan even if it's empty which can lead to additional overhead.
349348
You can use <literal>disable_parent()</literal> if you are never
350349
going to use parent table as a storage. Default value depends on
@@ -968,7 +967,7 @@ WHERE id = any (SELECT * FROM some_table limit 4);
968967
</programlisting>
969968
<para>
970969
All sections and data will remain unchanged and will be handled
971-
by the standard &productname; inheritance mechanism.
970+
by the standard PostgreSQL inheritance mechanism.
972971
</para>
973972
</sect3>
974973
</sect2>

0 commit comments

Comments
 (0)