File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -1611,7 +1611,8 @@ struct CustomExecMethods;
1611
1611
typedef struct CustomScanState
1612
1612
{
1613
1613
ScanState ss ;
1614
- uint32 flags ; /* mask of CUSTOMPATH_* flags, see relation.h */
1614
+ uint32 flags ; /* mask of CUSTOMPATH_* flags, see
1615
+ * nodes/extensible.h */
1615
1616
List * custom_ps ; /* list of child PlanState nodes, if any */
1616
1617
Size pscan_len ; /* size of parallel coordination information */
1617
1618
const struct CustomExecMethods * methods ;
Original file line number Diff line number Diff line change @@ -560,7 +560,8 @@ struct CustomScanMethods;
560
560
typedef struct CustomScan
561
561
{
562
562
Scan scan ;
563
- uint32 flags ; /* mask of CUSTOMPATH_* flags, see relation.h */
563
+ uint32 flags ; /* mask of CUSTOMPATH_* flags, see
564
+ * nodes/extensible.h */
564
565
List * custom_plans ; /* list of Plan nodes, if any */
565
566
List * custom_exprs ; /* expressions that custom code may evaluate */
566
567
List * custom_private ; /* private data for custom code */
Original file line number Diff line number Diff line change @@ -1087,7 +1087,8 @@ struct CustomPathMethods;
1087
1087
typedef struct CustomPath
1088
1088
{
1089
1089
Path path ;
1090
- uint32 flags ; /* mask of CUSTOMPATH_* flags, see above */
1090
+ uint32 flags ; /* mask of CUSTOMPATH_* flags, see
1091
+ * nodes/extensible.h */
1091
1092
List * custom_paths ; /* list of child Path nodes, if any */
1092
1093
List * custom_private ;
1093
1094
const struct CustomPathMethods * methods ;
You can’t perform that action at this time.
0 commit comments