mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Update comments to reflect code rearrangement.
Commit f9143d102f falsified these.
KaiGai Kohei
			
			
This commit is contained in:
		@@ -1611,7 +1611,8 @@ struct CustomExecMethods;
 | 
				
			|||||||
typedef struct CustomScanState
 | 
					typedef struct CustomScanState
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	ScanState	ss;
 | 
						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 */
 | 
						List	   *custom_ps;		/* list of child PlanState nodes, if any */
 | 
				
			||||||
	Size		pscan_len;		/* size of parallel coordination information */
 | 
						Size		pscan_len;		/* size of parallel coordination information */
 | 
				
			||||||
	const struct CustomExecMethods *methods;
 | 
						const struct CustomExecMethods *methods;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -560,7 +560,8 @@ struct CustomScanMethods;
 | 
				
			|||||||
typedef struct CustomScan
 | 
					typedef struct CustomScan
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	Scan		scan;
 | 
						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_plans;	/* list of Plan nodes, if any */
 | 
				
			||||||
	List	   *custom_exprs;	/* expressions that custom code may evaluate */
 | 
						List	   *custom_exprs;	/* expressions that custom code may evaluate */
 | 
				
			||||||
	List	   *custom_private; /* private data for custom code */
 | 
						List	   *custom_private; /* private data for custom code */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1085,7 +1085,8 @@ struct CustomPathMethods;
 | 
				
			|||||||
typedef struct CustomPath
 | 
					typedef struct CustomPath
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	Path		path;
 | 
						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_paths;	/* list of child Path nodes, if any */
 | 
				
			||||||
	List	   *custom_private;
 | 
						List	   *custom_private;
 | 
				
			||||||
	const struct CustomPathMethods *methods;
 | 
						const struct CustomPathMethods *methods;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user