diff options
author | Robert Haas | 2022-11-18 21:16:21 +0000 |
---|---|---|
committer | Robert Haas | 2022-11-18 21:16:21 +0000 |
commit | 2fb6154fcd769b2d4ea1226788e0ec2fc3522cb8 (patch) | |
tree | 8faed7d415d5f2523b635163c4254f1bd3b93fd8 | |
parent | 3d14e171e9e2236139e8976f3309a588bcc8683b (diff) |
Fix typos and bump catversion.
Typos reported by Álvaro Herrera and Erik Rijkers.
Catversion bump for 3d14e171e9e2236139e8976f3309a588bcc8683b was
inadvertently omitted.
-rw-r--r-- | doc/src/sgml/ref/grant.sgml | 2 | ||||
-rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 1 | ||||
-rw-r--r-- | src/include/catalog/catversion.h | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/grant.sgml b/doc/src/sgml/ref/grant.sgml index d5911ff942..5ae523f4b3 100644 --- a/doc/src/sgml/ref/grant.sgml +++ b/doc/src/sgml/ref/grant.sgml @@ -252,7 +252,7 @@ GRANT <replaceable class="parameter">role_name</replaceable> [, ...] TO <replace in a role to one or more other roles. Membership in a role is significant because it potentially allows access to the privileges granted to a role to each of its members, and potentially also the ability to make changes - to the role itself. However, the actualy permisions conferred depend on + to the role itself. However, the actual permisions conferred depend on the options associated with the grant. </para> diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 76a186b639..a87262e333 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -970,7 +970,6 @@ dumpRoleMembership(PGconn *conn) /* * Previous versions of PostgreSQL also did not have grant-level options. - * INHERIT option. */ dump_grant_options = (server_version >= 160000); diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index c6ef593207..b3a57136b7 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -57,6 +57,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 202211121 +#define CATALOG_VERSION_NO 202211821 #endif |