aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-05-27 12:26:16 -0400
committerPeter Eisentraut <peter@eisentraut.org>2019-05-27 12:26:16 -0400
commit00ef6e3b28a8220f2dba881dbf56e3ba62f851bd (patch)
tree46e39b39a3482d2dc6d4f6e674714d0062d7e38d /doc/src
parent39fe881d3cf315d8d2ea9ee4ea1e3e39a82d5cc7 (diff)
downloadpostgresql-00ef6e3b28a8220f2dba881dbf56e3ba62f851bd.tar.gz
postgresql-00ef6e3b28a8220f2dba881dbf56e3ba62f851bd.zip
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 <t.bussmann@gmx.net>
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/create_foreign_table.sgml4
-rw-r--r--doc/src/sgml/ref/create_table.sgml4
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/create_foreign_table.sgml b/doc/src/sgml/ref/create_foreign_table.sgml
index 5db15eb73eb..25d2f09ed20 100644
--- a/doc/src/sgml/ref/create_foreign_table.sgml
+++ b/doc/src/sgml/ref/create_foreign_table.sgml
@@ -268,8 +268,8 @@ CHECK ( <replaceable class="parameter">expression</replaceable> ) [ NO INHERIT ]
<listitem>
<para>
This clause creates the column as a <firstterm>generated
- column</firstterm>. The column cannot be written to, and when read it
- will be computed from the specified expression.
+ column</firstterm>. The column cannot be written to, and when read the
+ result of the specified expression will be returned.
</para>
<para>
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 44a61ef99e9..8e1bfe4d78a 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -813,8 +813,8 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
<listitem>
<para>
This clause creates the column as a <firstterm>generated
- column</firstterm>. The column cannot be written to, and when read it
- will be computed from the specified expression.
+ column</firstterm>. The column cannot be written to, and when read the
+ result of the specified expression will be returned.
</para>
<para>