From 6415ba502bdc540e21f122d4c6c87d4a35f8ec27 Mon Sep 17 00:00:00 2001 From: Robert Haas <rhaas@postgresql.org> Date: Wed, 14 Sep 2016 15:43:26 -0400 Subject: [PATCH] Improve code comment for GatherPath's single_copy flag. Discussion: 5934.1472642782@sss.pgh.pa.us --- src/include/nodes/relation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 2709cc7df5d..3a1255a6579 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -1190,7 +1190,7 @@ typedef struct GatherPath { Path path; Path *subpath; /* path for each worker */ - bool single_copy; /* path must not be executed >1x */ + bool single_copy; /* don't execute path more than once */ } GatherPath; /* -- GitLab