diff options
author | Amit Langote <amitlan@postgresql.org> | 2023-06-16 10:04:22 +0900 |
---|---|---|
committer | Amit Langote <amitlan@postgresql.org> | 2023-06-16 10:19:51 +0900 |
commit | 2f6e826f65798ccdb3860f346e9bef58c1c962c3 (patch) | |
tree | 554b9b5f2388bdab0f4436a5cef62bd20c17a4b5 /src | |
parent | 6ecc1c02ade5388b5bd5aa957787d405ed489cf2 (diff) | |
download | postgresql-2f6e826f65798ccdb3860f346e9bef58c1c962c3.tar.gz postgresql-2f6e826f65798ccdb3860f346e9bef58c1c962c3.zip |
Fix typo in comment.
Back-patch down to 11.
Author: Sho Kato (<kato-sho@fujitsu.com>)
Discussion: https://postgr.es/m/TYCPR01MB68499042A33BC32241193AAF9F5BA%40TYCPR01MB6849.jpnprd01.prod.outlook.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/rewrite/rewriteHandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/rewrite/rewriteHandler.c b/src/backend/rewrite/rewriteHandler.c index ff630fdb7d8..50948d180d0 100644 --- a/src/backend/rewrite/rewriteHandler.c +++ b/src/backend/rewrite/rewriteHandler.c @@ -3326,7 +3326,7 @@ rewriteTargetView(Query *parsetree, Relation view) * columns to be affected. * * Note that this destroys the resno ordering of the targetlist, but that - * will be fixed when we recurse through rewriteQuery, which will invoke + * will be fixed when we recurse through RewriteQuery, which will invoke * rewriteTargetListIU again on the updated targetlist. */ if (parsetree->commandType != CMD_DELETE) |