diff options
author | Amit Kapila <akapila@postgresql.org> | 2020-02-06 16:00:54 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2020-02-06 16:00:54 +0530 |
commit | c5060c15037e1d45fab78a341cff28f139f2163d (patch) | |
tree | bf73fd562c397ad5c36f8eb6ccc6381b7bb10a7a /src/backend | |
parent | 3d214a8e5b7c21a46760b4480227e07977348ebb (diff) | |
download | postgresql-c5060c15037e1d45fab78a341cff28f139f2163d.tar.gz postgresql-c5060c15037e1d45fab78a341cff28f139f2163d.zip |
Fix typo.
Reported-by: Amit Langote
Author: Amit Langote
Backpatch-through: 9.6, where it was introduced
Discussion: https://postgr.es/m/CA+HiwqFNADeukaaGRmTqANbed9Fd81gLi08AWe_F86_942Gspw@mail.gmail.com
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/optimizer/path/allpaths.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index b7723481b0e..58269374056 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -610,7 +610,7 @@ set_rel_consider_parallel(PlannerInfo *root, RelOptInfo *rel, /* * Currently, parallel workers can't access the leader's temporary - * tables. We could possibly relax this if the wrote all of its + * tables. We could possibly relax this if we wrote all of its * local buffers at the start of the query and made no changes * thereafter (maybe we could allow hint bit changes), and if we * taught the workers to read them. Writing a large number of |