1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Improve code comment for GatherPath's single_copy flag.

Discussion: 5934.1472642782@sss.pgh.pa.us
This commit is contained in:
Robert Haas
2016-09-14 15:43:26 -04:00
parent a163c006ca
commit 6415ba502b

View File

@@ -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;
/*