diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_table.sgml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index d52a3c49d6f..118840ce7a0 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1055,7 +1055,8 @@ FROM ( { <replaceable class="PARAMETER">numeric_literal</replaceable> | <replace All rows in the temporary table will be deleted at the end of each transaction block. Essentially, an automatic <xref linkend="sql-truncate"> is done - at each commit. + at each commit. When used on a partitioned table, this + is not cascaded to its partitions. </para> </listitem> </varlistentry> @@ -1065,7 +1066,9 @@ FROM ( { <replaceable class="PARAMETER">numeric_literal</replaceable> | <replace <listitem> <para> The temporary table will be dropped at the end of the current - transaction block. + transaction block. When used on a partitioned table, this action + drops its partitions and when used on tables with inheritance + children, it drops the dependent children. </para> </listitem> </varlistentry> |