55 partitioning mechanism and functions to manage partitions.
66 </para>
77 <para>
8- The extension is compatible withPostgreSQL 9.5 (9.6 support is
8+ The extension is compatible with&productname; 9.5 (9.6 support is
99 coming soon).
1010 </para>
1111 <sect2 id="pg-pathman-overview">
1414 <emphasis role="strong">Partitioning</emphasis> means splitting
1515 one large table into smaller pieces. Each row in such table is
1616 moved to a single partition according to the partitioning key.
17- PostgreSQL supports partitioning via table inheritance: each
17+ &productname; supports partitioning via table inheritance: each
1818 partition must be created as a child table with CHECK CONSTRAINT.
1919 For example:
2020 </para>
@@ -114,7 +114,7 @@ make install USE_PGXS=1
114114shared_preload_libraries = 'pg_pathman'
115115</programlisting>
116116 <para>
117- It is essential to restart thePostgreSQL instance. After that,
117+ It is essential to restart the&productname; instance. After that,
118118 execute the following query in psql:
119119 </para>
120120 <programlisting>
@@ -128,7 +128,7 @@ CREATE EXTENSION pg_pathman;
128128 <emphasis role="strong">Important:</emphasis> Don't forget to
129129 set the <literal>PG_CONFIG</literal> variable in case you want
130130 to test <literal>pg_pathman</literal> on a custom build of
131- PostgreSQL . Read more
131+ &productname; . Read more
132132 <ulink url="https://wiki.postgresql.org/wiki/Building_and_Installing_PostgreSQL_Extension_Modules">here</ulink>.
133133 </para>
134134 </blockquote>
@@ -344,7 +344,7 @@ set_enable_parent(relation REGCLASS, value BOOLEAN)
344344</programlisting>
345345 <para>
346346 Include/exclude parent table into/from query plan. In original
347- PostgreSQL planner parent table is always included into query
347+ &productname; planner parent table is always included into query
348348 plan even if it's empty which can lead to additional overhead.
349349 You can use <literal>disable_parent()</literal> if you are never
350350 going to use parent table as a storage. Default value depends on
@@ -961,7 +961,7 @@ SELECT disable_pathman_for('range_rel');
961961</programlisting>
962962 <para>
963963 All sections and data will remain unchanged and will be handled
964- by the standardPostgreSQL inheritance mechanism.
964+ by the standard&productname; inheritance mechanism.
965965 </para>
966966 </sect3>
967967 </sect2>