Update comments to reflect code rearrangement.
authorRobert Haas <rhaas@postgresql.org>
Wed, 31 Aug 2016 07:06:18 +0000 (12:36 +0530)
committerRobert Haas <rhaas@postgresql.org>
Wed, 31 Aug 2016 07:06:18 +0000 (12:36 +0530)
Commit f9143d102ffd0947ca904c62b1d3d6fd587e0c80 falsified these.

KaiGai Kohei

src/include/nodes/execnodes.h
src/include/nodes/plannodes.h
src/include/nodes/relation.h

index e7fd7bd08eef05356dfc740ad69b84e539e9ebca..a4ea1b901ab7d63e15e4fb7e1d3f940128d5795d 100644 (file)
@@ -1611,7 +1611,8 @@ struct CustomExecMethods;
 typedef struct CustomScanState
 {
    ScanState   ss;
-   uint32      flags;          /* mask of CUSTOMPATH_* flags, see relation.h */
+   uint32      flags;          /* mask of CUSTOMPATH_* flags, see
+                                * nodes/extensible.h */
    List       *custom_ps;      /* list of child PlanState nodes, if any */
    Size        pscan_len;      /* size of parallel coordination information */
    const struct CustomExecMethods *methods;
index bc5463b8f7fe02b370499f40cbc4c6441f47a246..e2fbc7d5a7844e46442b8a5befb88dc4ca912a53 100644 (file)
@@ -560,7 +560,8 @@ struct CustomScanMethods;
 typedef struct CustomScan
 {
    Scan        scan;
-   uint32      flags;          /* mask of CUSTOMPATH_* flags, see relation.h */
+   uint32      flags;          /* mask of CUSTOMPATH_* flags, see
+                                * nodes/extensible.h */
    List       *custom_plans;   /* list of Plan nodes, if any */
    List       *custom_exprs;   /* expressions that custom code may evaluate */
    List       *custom_private; /* private data for custom code */
index fcfb0d4d0ffaeb882b5fbfe6848dea86e4766307..2709cc7df5d2730369e4776f11a4a85282373622 100644 (file)
@@ -1087,7 +1087,8 @@ struct CustomPathMethods;
 typedef struct CustomPath
 {
    Path        path;
-   uint32      flags;          /* mask of CUSTOMPATH_* flags, see above */
+   uint32      flags;          /* mask of CUSTOMPATH_* flags, see
+                                * nodes/extensible.h */
    List       *custom_paths;   /* list of child Path nodes, if any */
    List       *custom_private;
    const struct CustomPathMethods *methods;