]> granicus.if.org Git - postgresql/commitdiff
Clarify documentation
authorPeter Eisentraut <peter_e@gmx.net>
Mon, 28 Aug 2017 01:29:54 +0000 (21:29 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Mon, 28 Aug 2017 01:30:59 +0000 (21:30 -0400)
Discussion: https://www.postgresql.org/message-id/flat/20170618071607.GA16418%40nol.local

doc/src/sgml/ref/insert.sgml

index 94dad0087019f22996cf5cd3c5f24e8f130ff3ad..cc9b94617e9831d8878ada192ecb305e3f4078d7 100644 (file)
@@ -227,8 +227,9 @@ INSERT INTO <replaceable class="PARAMETER">table_name</replaceable> [ AS <replac
         This clause is useful for example when copying values between tables.
         Writing <literal>INSERT INTO tbl2 OVERRIDING USER VALUE SELECT * FROM
         tbl1</literal> will copy from <literal>tbl1</literal> all columns that
-        are not identity columns in <literal>tbl2</literal> but will continue
-        the sequence counters for any identity columns.
+        are not identity columns in <literal>tbl2</literal> while values for
+        the identity columns in <literal>tbl2</literal> will be generated by
+        the sequences associated with <literal>tbl2</literal>.
        </para>
       </listitem>
      </varlistentry>