From: Peter Eisentraut Date: Mon, 27 May 2019 16:26:16 +0000 (-0400) Subject: doc: Fix generated column documentation X-Git-Tag: REL_12_BETA2~107 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00ef6e3b28a8220f2dba881dbf56e3ba62f851bd;p=postgresql doc: Fix generated column documentation The old text still had an implicit reference to the virtual behavior, which was not in the final patch. Author: Tobias Bussmann --- diff --git a/doc/src/sgml/ref/create_foreign_table.sgml b/doc/src/sgml/ref/create_foreign_table.sgml index 5db15eb73e..25d2f09ed2 100644 --- a/doc/src/sgml/ref/create_foreign_table.sgml +++ b/doc/src/sgml/ref/create_foreign_table.sgml @@ -268,8 +268,8 @@ CHECK ( expression ) [ NO INHERIT ] This clause creates the column as a generated - column. The column cannot be written to, and when read it - will be computed from the specified expression. + column. The column cannot be written to, and when read the + result of the specified expression will be returned. diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 44a61ef99e..8e1bfe4d78 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -813,8 +813,8 @@ WITH ( MODULUS numeric_literal, REM This clause creates the column as a generated - column. The column cannot be written to, and when read it - will be computed from the specified expression. + column. The column cannot be written to, and when read the + result of the specified expression will be returned.