mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Change TRUE/FALSE to true/false
The lower case spellings are C and C++ standard and are used in most parts of the PostgreSQL sources. The upper case spellings are only used in some files/modules. So standardize on the standard spellings. The APIs for ICU, Perl, and Windows define their own TRUE and FALSE, so those are left as is when using those APIs. In code comments, we use the lower-case spelling for the C concepts and keep the upper-case spelling for the SQL concepts. Reviewed-by: Michael Paquier <michael.paquier@gmail.com>
This commit is contained in:
		@@ -1423,14 +1423,14 @@ typedef JoinPath NestPath;
 | 
			
		||||
 * mergejoin.  If it is not NIL then it is a PathKeys list describing
 | 
			
		||||
 * the ordering that must be created by an explicit Sort node.
 | 
			
		||||
 *
 | 
			
		||||
 * skip_mark_restore is TRUE if the executor need not do mark/restore calls.
 | 
			
		||||
 * skip_mark_restore is true if the executor need not do mark/restore calls.
 | 
			
		||||
 * Mark/restore overhead is usually required, but can be skipped if we know
 | 
			
		||||
 * that the executor need find only one match per outer tuple, and that the
 | 
			
		||||
 * mergeclauses are sufficient to identify a match.  In such cases the
 | 
			
		||||
 * executor can immediately advance the outer relation after processing a
 | 
			
		||||
 * match, and therefoere it need never back up the inner relation.
 | 
			
		||||
 *
 | 
			
		||||
 * materialize_inner is TRUE if a Material node should be placed atop the
 | 
			
		||||
 * materialize_inner is true if a Material node should be placed atop the
 | 
			
		||||
 * inner input.  This may appear with or without an inner Sort step.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
@@ -1834,15 +1834,15 @@ typedef struct RestrictInfo
 | 
			
		||||
 | 
			
		||||
	Expr	   *clause;			/* the represented clause of WHERE or JOIN */
 | 
			
		||||
 | 
			
		||||
	bool		is_pushed_down; /* TRUE if clause was pushed down in level */
 | 
			
		||||
	bool		is_pushed_down; /* true if clause was pushed down in level */
 | 
			
		||||
 | 
			
		||||
	bool		outerjoin_delayed;	/* TRUE if delayed by lower outer join */
 | 
			
		||||
	bool		outerjoin_delayed;	/* true if delayed by lower outer join */
 | 
			
		||||
 | 
			
		||||
	bool		can_join;		/* see comment above */
 | 
			
		||||
 | 
			
		||||
	bool		pseudoconstant; /* see comment above */
 | 
			
		||||
 | 
			
		||||
	bool		leakproof;		/* TRUE if known to contain no leaked Vars */
 | 
			
		||||
	bool		leakproof;		/* true if known to contain no leaked Vars */
 | 
			
		||||
 | 
			
		||||
	Index		security_level; /* see comment above */
 | 
			
		||||
 | 
			
		||||
@@ -1973,7 +1973,7 @@ typedef struct PlaceHolderVar
 | 
			
		||||
 * syntactically below this special join.  (These are needed to help compute
 | 
			
		||||
 * min_lefthand and min_righthand for higher joins.)
 | 
			
		||||
 *
 | 
			
		||||
 * delay_upper_joins is set TRUE if we detect a pushed-down clause that has
 | 
			
		||||
 * delay_upper_joins is set true if we detect a pushed-down clause that has
 | 
			
		||||
 * to be evaluated after this join is formed (because it references the RHS).
 | 
			
		||||
 * Any outer joins that have such a clause and this join in their RHS cannot
 | 
			
		||||
 * commute with this join, because that would leave noplace to check the
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user