From: Peter Eisentraut Date: Mon, 28 Aug 2017 01:29:54 +0000 (-0400) Subject: Clarify documentation X-Git-Tag: jit-before-rebase-2017-11-03~389 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=46596f8d6b5dfdb836fa79788614a3786bc3cbb6;p=users%2Fandresfreund%2Fpostgres.git Clarify documentation Discussion: https://www.postgresql.org/message-id/flat/20170618071607.GA16418%40nol.local --- diff --git a/doc/src/sgml/ref/insert.sgml b/doc/src/sgml/ref/insert.sgml index 94dad00870..cc9b94617e 100644 --- a/doc/src/sgml/ref/insert.sgml +++ b/doc/src/sgml/ref/insert.sgml @@ -227,8 +227,9 @@ INSERT INTO table_name [ AS INSERT INTO tbl2 OVERRIDING USER VALUE SELECT * FROM tbl1 will copy from tbl1 all columns that - are not identity columns in tbl2 but will continue - the sequence counters for any identity columns. + are not identity columns in tbl2 while values for + the identity columns in tbl2 will be generated by + the sequences associated with tbl2.