diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ddl.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 00f44f56faf..026bfff70f3 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -4387,7 +4387,7 @@ ALTER INDEX measurement_city_id_logdate_key a single partition using the <link linkend="sql-altertable-merge-partitions"><command>ALTER TABLE ... MERGE PARTITIONS</command></link>. This feature simplifies the management of partitioned tables by allowing - administrators to combine partitions that are no longer needed as + users to combine partitions that are no longer needed as separate entities. It's important to note that this operation is not supported for hash-partitioned tables and acquires an <literal>ACCESS EXCLUSIVE</literal> lock, which could impact high-load diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 8f5bf185dd3..fe36ff82e52 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -1175,7 +1175,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM <itemizedlist> <listitem> <para> - For range-partitioned tables is necessary that the ranges + For range-partitioned tables it is necessary that the ranges of the partitions <replaceable class="parameter">partition_name1</replaceable>, <replaceable class="parameter">partition_name2</replaceable> [, ...] can be merged into one range without spaces and overlaps (otherwise an error @@ -1185,10 +1185,10 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM </listitem> <listitem> <para> - For list-partitioned tables the values lists of all partitions + For list-partitioned tables the value lists of all partitions <replaceable class="parameter">partition_name1</replaceable>, <replaceable class="parameter">partition_name2</replaceable> [, ...] are - combined and form a list of values of partition + combined and form the list of values of partition <replaceable class="parameter">partition_name</replaceable>. </para> </listitem> |