diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-02-10 15:37:41 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-02-10 15:37:41 +0900 |
commit | 9e8b694d819d96f65f8de33102858bd6bff4b54a (patch) | |
tree | 8942f0c9fbc71f946e3dc2a7eaca675eae512c2f /src | |
parent | f30d62c2fc60acfa62d3b83a73dc9bf7f83cfe2f (diff) | |
download | postgresql-9e8b694d819d96f65f8de33102858bd6bff4b54a.tar.gz postgresql-9e8b694d819d96f65f8de33102858bd6bff4b54a.zip |
Fix typo in parsenodes.h
Introduced in a61b1f7 when RTEPermissionInfo got added. Issue spotted
while reviewing the area for a different patch.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/nodes/parsenodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 855da99ec02..eafdb083ea4 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -1212,7 +1212,7 @@ typedef struct RangeTblEntry * needed after rule expansion. * * Only the relations directly mentioned in the query are checked for - * accesss permissions by the core executor, so only their RTEPermissionInfos + * access permissions by the core executor, so only their RTEPermissionInfos * are present in the Query. However, extensions may want to check inheritance * children too, depending on the value of rte->inh, so it's copied in 'inh' * for their perusal. |