diff --git a/doc/src/sgml/release-16.sgml b/doc/src/sgml/release-16.sgml index f90ead3d56e..975a1eac8b3 100644 --- a/doc/src/sgml/release-16.sgml +++ b/doc/src/sgml/release-16.sgml @@ -13631,7 +13631,7 @@ Author: Michael Paquier Backend support for this authentication method was removed in - PostgresSQL 9.1. + PostgreSQL 9.1. diff --git a/doc/src/sgml/rules.sgml b/doc/src/sgml/rules.sgml index 22e4cad1039..8d85d1e2afc 100644 --- a/doc/src/sgml/rules.sgml +++ b/doc/src/sgml/rules.sgml @@ -1151,7 +1151,7 @@ CREATE INCREMENTAL MATERIALIZED VIEW mymatview AS SELECT * postgres=# CREATE INCREMENTAL MATERIALIZED VIEW m AS SELECT * FROM t0; NOTICE: could not create an index on materialized view "m" automatically -HINT: Create an index on the materialized view for effcient incremental maintenance. +HINT: Create an index on the materialized view for efficient incremental maintenance. SELECT 3 postgres=# SELECT * FROM m; i @@ -1253,14 +1253,14 @@ Time: 13.068 ms automatically if possible. If the view definition query has a GROUP BY clause, a unique index is created on the columns of GROUP BY expressions. Also, if the view has DISTINCT clause, a unique index is created on all columns in the target list. Otherwise, if the - view contains all primary key attritubes of its base tables in the target list, a unique - index is created on these attritubes. In other cases, no index is created. + view contains all primary key attributes of its base tables in the target list, a unique + index is created on these attributes. In other cases, no index is created. In the previous example, a unique index "mv_ivm_index" is created on aid and bid columns of materialized view "mv_ivm", and this enables the rapid update of the view. - Dropping this index make updating the view take a loger time. + Dropping this index makes updating the view take a longer time. test=# DROP INDEX mv_ivm_index; DROP INDEX @@ -1409,7 +1409,7 @@ Time: 16386.245 ms (00:16.386) - UNION/INTERSECT/EXCEPT clauses cannnot be used. + UNION/INTERSECT/EXCEPT clauses cannot be used. @@ -1427,13 +1427,13 @@ Time: 16386.245 ms (00:16.386) - inheritance parent tables cannnot be used. + inheritance parent tables cannot be used. - VALUES clause cannnot be used. + VALUES clause cannot be used.