diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-05-10 15:45:54 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-05-10 15:45:54 +0900 |
commit | 829daab4bbe356a2f9ae0b2ee0fc98bc2279d754 (patch) | |
tree | ab57e517b2b2b4287ffd6a1ea6ac80136b9d7439 /src/backend/commands/operatorcmds.c | |
parent | dc0260861063b125d297c0f3caca359feb381c6a (diff) | |
download | postgresql-829daab4bbe356a2f9ae0b2ee0fc98bc2279d754.tar.gz postgresql-829daab4bbe356a2f9ae0b2ee0fc98bc2279d754.zip |
Fix typos in operatorcmds.c
Author: Kyotaro Horiguchi, Justin Pryzby
Discussion: https://postgr.es/m/20210428.173633.1525059946206239295.horikyota.ntt@gmail.com
Diffstat (limited to 'src/backend/commands/operatorcmds.c')
-rw-r--r-- | src/backend/commands/operatorcmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/operatorcmds.c b/src/backend/commands/operatorcmds.c index 809043c5d19..fbd7d8d062f 100644 --- a/src/backend/commands/operatorcmds.c +++ b/src/backend/commands/operatorcmds.c @@ -265,7 +265,7 @@ DefineOperator(List *names, List *parameters) } /* - * Look up a restriction estimator function ny name, and verify that it has + * Look up a restriction estimator function by name, and verify that it has * the correct signature and we have the permissions to attach it to an * operator. */ @@ -300,7 +300,7 @@ ValidateRestrictionEstimator(List *restrictionName) } /* - * Look up a join estimator function ny name, and verify that it has the + * Look up a join estimator function by name, and verify that it has the * correct signature and we have the permissions to attach it to an * operator. */ |