|
5 | 5 | partitioning mechanism and functions to manage partitions.
|
6 | 6 | </para>
|
7 | 7 | <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. |
10 | 9 | </para>
|
11 | 10 | <sect2 id="pg-pathman-overview">
|
12 | 11 | <title>Overview</title>
|
13 | 12 | <para>
|
14 | 13 | <emphasis role="strong">Partitioning</emphasis> means splitting
|
15 | 14 | one large table into smaller pieces. Each row in such table is
|
16 | 15 | 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 |
18 | 17 | partition must be created as a child table with CHECK CONSTRAINT.
|
19 | 18 | For example:
|
20 | 19 | </para>
|
@@ -128,7 +127,7 @@ CREATE EXTENSION pg_pathman;
|
128 | 127 | <emphasis role="strong">Important:</emphasis> Don't forget to
|
129 | 128 | set the <literal>PG_CONFIG</literal> variable in case you want
|
130 | 129 | to test <literal>pg_pathman</literal> on a custom build of
|
131 |
| - &productname;. Read more |
| 130 | + PostgreSQL. Read more |
132 | 131 | <ulink url="https://wiki.postgresql.org/wiki/Building_and_Installing_PostgreSQL_Extension_Modules">here</ulink>.
|
133 | 132 | </para>
|
134 | 133 | </blockquote>
|
@@ -344,7 +343,7 @@ set_enable_parent(relation REGCLASS, value BOOLEAN)
|
344 | 343 | </programlisting>
|
345 | 344 | <para>
|
346 | 345 | 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 |
348 | 347 | plan even if it's empty which can lead to additional overhead.
|
349 | 348 | You can use <literal>disable_parent()</literal> if you are never
|
350 | 349 | 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);
|
968 | 967 | </programlisting>
|
969 | 968 | <para>
|
970 | 969 | 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. |
972 | 971 | </para>
|
973 | 972 | </sect3>
|
974 | 973 | </sect2>
|
|
0 commit comments