diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-11-22 13:23:54 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-11-22 13:23:54 +0900 |
commit | 25c026c284de5ffb1ea5b007afc10158bfab64cb (patch) | |
tree | 1227db43b2d08cde7784443f2834b658982afcb8 /src | |
parent | 9cf5d3c4867aaa6804be8fdf5a29bf28d0096320 (diff) | |
download | postgresql-25c026c284de5ffb1ea5b007afc10158bfab64cb.tar.gz postgresql-25c026c284de5ffb1ea5b007afc10158bfab64cb.zip |
Fix typo in description of ExecFindPartition
Author: Amit Langote
Discussion: https://postgr.es/m/CA+HiwqHg0=UL+Dhh3gpiwYNA=ufk9Lb7GQ2c=5rs=ZmVTP7xAw@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/executor/execPartition.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index 24de567a92d..179a501f306 100644 --- a/src/backend/executor/execPartition.c +++ b/src/backend/executor/execPartition.c @@ -259,8 +259,8 @@ ExecSetupPartitionTupleRouting(ModifyTableState *mtstate, Relation rel) * scratch space. * * If no leaf partition is found, this routine errors out with the appropriate - * error message. An error may also raised if the found target partition is - * not a valid target for an INSERT. + * error message. An error may also be raised if the found target partition + * is not a valid target for an INSERT. */ ResultRelInfo * ExecFindPartition(ModifyTableState *mtstate, |