From: Robert Haas Date: Wed, 14 Sep 2016 19:43:26 +0000 (-0400) Subject: Improve code comment for GatherPath's single_copy flag. X-Git-Tag: REL_10_BETA1~1719 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6415ba502bdc540e21f122d4c6c87d4a35f8ec27;p=thirdparty%2Fpostgresql.git Improve code comment for GatherPath's single_copy flag. Discussion: 5934.1472642782@sss.pgh.pa.us --- 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; /*