5
5
partitioning mechanism and functions to manage partitions.
6
6
</para>
7
7
<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
9
9
coming soon).
10
10
</para>
11
11
<sect2 id="pg-pathman-overview">
14
14
<emphasis role="strong">Partitioning</emphasis> means splitting
15
15
one large table into smaller pieces. Each row in such table is
16
16
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
18
18
partition must be created as a child table with CHECK CONSTRAINT.
19
19
For example:
20
20
</para>
@@ -114,7 +114,7 @@ make install USE_PGXS=1
114
114
shared_preload_libraries = 'pg_pathman'
115
115
</programlisting>
116
116
<para>
117
- It is essential to restart thePostgreSQL instance. After that,
117
+ It is essential to restart the&productname; instance. After that,
118
118
execute the following query in psql:
119
119
</para>
120
120
<programlisting>
@@ -128,7 +128,7 @@ CREATE EXTENSION pg_pathman;
128
128
<emphasis role="strong">Important:</emphasis> Don't forget to
129
129
set the <literal>PG_CONFIG</literal> variable in case you want
130
130
to test <literal>pg_pathman</literal> on a custom build of
131
- PostgreSQL . Read more
131
+ &productname; . Read more
132
132
<ulink url="https://wiki.postgresql.org/wiki/Building_and_Installing_PostgreSQL_Extension_Modules">here</ulink>.
133
133
</para>
134
134
</blockquote>
@@ -344,7 +344,7 @@ set_enable_parent(relation REGCLASS, value BOOLEAN)
344
344
</programlisting>
345
345
<para>
346
346
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
348
348
plan even if it's empty which can lead to additional overhead.
349
349
You can use <literal>disable_parent()</literal> if you are never
350
350
going to use parent table as a storage. Default value depends on
@@ -961,7 +961,7 @@ SELECT disable_pathman_for('range_rel');
961
961
</programlisting>
962
962
<para>
963
963
All sections and data will remain unchanged and will be handled
964
- by the standardPostgreSQL inheritance mechanism.
964
+ by the standard&productname; inheritance mechanism.
965
965
</para>
966
966
</sect3>
967
967
</sect2>