mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +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:
@ -336,7 +336,7 @@ add_paths_to_joinrel(PlannerInfo *root,
|
||||
* across joins unless there's a join-order-constraint-based reason to do so.
|
||||
* So we ignore the param_source_rels restriction when this case applies.
|
||||
*
|
||||
* allow_star_schema_join() returns TRUE if the param_source_rels restriction
|
||||
* allow_star_schema_join() returns true if the param_source_rels restriction
|
||||
* should be overridden, ie, it's okay to perform this join.
|
||||
*/
|
||||
static inline bool
|
||||
@ -1880,7 +1880,7 @@ hash_inner_and_outer(PlannerInfo *root,
|
||||
* Select mergejoin clauses that are usable for a particular join.
|
||||
* Returns a list of RestrictInfo nodes for those clauses.
|
||||
*
|
||||
* *mergejoin_allowed is normally set to TRUE, but it is set to FALSE if
|
||||
* *mergejoin_allowed is normally set to true, but it is set to false if
|
||||
* this is a right/full join and there are nonmergejoinable join clauses.
|
||||
* The executor's mergejoin machinery cannot handle such cases, so we have
|
||||
* to avoid generating a mergejoin plan. (Note that this flag does NOT
|
||||
|
Reference in New Issue
Block a user