diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2024-04-15 15:41:37 +0300 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2024-04-15 16:00:02 +0300 |
commit | 9dfcac8e15acc3b4d4d5bc02383a56ccb07229fe (patch) | |
tree | a2fb6cbc2b6c1c8ef895d1358a0789ac0bd4dab7 /doc/src | |
parent | c3709100be73ad5af7ff536476d4d713bca41b1a (diff) | |
download | postgresql-9dfcac8e15acc3b4d4d5bc02383a56ccb07229fe.tar.gz postgresql-9dfcac8e15acc3b4d4d5bc02383a56ccb07229fe.zip |
Grammar fixes for split/merge partitions code
The fixes relate to comments, error messages, and corresponding expected output
of regression tests.
Discussion: https://postgr.es/m/CAMbWs49DDsknxyoycBqiE72VxzL_sYHF6zqL8dSeNehKPJhkKg%40mail.gmail.com
Discussion: https://postgr.es/m/86bfd241-a58c-479a-9a72-2c67a02becf8%40postgrespro.ru
Discussion: https://postgr.es/m/CAHewXNkGMPU50QG7V6Q60JGFORfo8LfYO1_GCkCa0VWbmB-fEw%40mail.gmail.com
Author: Richard Guo, Dmitry Koval, Tender Wang
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> |