Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a66be67

Browse files
committed
Update comments to reflect code rearrangement.
Commit f9143d1 falsified these. KaiGai Kohei
1 parent d9720e4 commit a66be67

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/include/nodes/execnodes.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -1611,7 +1611,8 @@ struct CustomExecMethods;
16111611
typedef struct CustomScanState
16121612
{
16131613
ScanState ss;
1614-
uint32 flags; /* mask of CUSTOMPATH_* flags, see relation.h */
1614+
uint32 flags; /* mask of CUSTOMPATH_* flags, see
1615+
* nodes/extensible.h */
16151616
List *custom_ps; /* list of child PlanState nodes, if any */
16161617
Size pscan_len; /* size of parallel coordination information */
16171618
const struct CustomExecMethods *methods;

src/include/nodes/plannodes.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,8 @@ struct CustomScanMethods;
560560
typedef struct CustomScan
561561
{
562562
Scan scan;
563-
uint32 flags; /* mask of CUSTOMPATH_* flags, see relation.h */
563+
uint32 flags; /* mask of CUSTOMPATH_* flags, see
564+
* nodes/extensible.h */
564565
List *custom_plans; /* list of Plan nodes, if any */
565566
List *custom_exprs; /* expressions that custom code may evaluate */
566567
List *custom_private; /* private data for custom code */

src/include/nodes/relation.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,8 @@ struct CustomPathMethods;
10851085
typedef struct CustomPath
10861086
{
10871087
Path path;
1088-
uint32 flags; /* mask of CUSTOMPATH_* flags, see above */
1088+
uint32 flags; /* mask of CUSTOMPATH_* flags, see
1089+
* nodes/extensible.h */
10891090
List *custom_paths; /* list of child Path nodes, if any */
10901091
List *custom_private;
10911092
const struct CustomPathMethods *methods;

0 commit comments

Comments
 (0)