]> granicus.if.org Git - postgresql/commitdiff
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:09:58 +0000 (12:39 +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 2be8908445b03cdcecc8786a5128aac8015ff890..b97b700ee45bff62e61cc258c87db640340494f0 100644 (file)
@@ -1085,7 +1085,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;