1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-28 11:55:03 +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:
Peter Eisentraut
2017-08-16 00:22:32 -04:00
parent 4497f2f3b3
commit 2eb4a831e5
216 changed files with 1168 additions and 1168 deletions

View File

@@ -1007,7 +1007,7 @@ AlterOptRoleElem:
}
| INHERIT
{
$$ = makeDefElem("inherit", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("inherit", (Node *)makeInteger(true), @1);
}
| CONNECTION LIMIT SignedIconst
{
@@ -1030,36 +1030,36 @@ AlterOptRoleElem:
* size of the main parser.
*/
if (strcmp($1, "superuser") == 0)
$$ = makeDefElem("superuser", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("superuser", (Node *)makeInteger(true), @1);
else if (strcmp($1, "nosuperuser") == 0)
$$ = makeDefElem("superuser", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("superuser", (Node *)makeInteger(false), @1);
else if (strcmp($1, "createrole") == 0)
$$ = makeDefElem("createrole", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("createrole", (Node *)makeInteger(true), @1);
else if (strcmp($1, "nocreaterole") == 0)
$$ = makeDefElem("createrole", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("createrole", (Node *)makeInteger(false), @1);
else if (strcmp($1, "replication") == 0)
$$ = makeDefElem("isreplication", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("isreplication", (Node *)makeInteger(true), @1);
else if (strcmp($1, "noreplication") == 0)
$$ = makeDefElem("isreplication", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("isreplication", (Node *)makeInteger(false), @1);
else if (strcmp($1, "createdb") == 0)
$$ = makeDefElem("createdb", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("createdb", (Node *)makeInteger(true), @1);
else if (strcmp($1, "nocreatedb") == 0)
$$ = makeDefElem("createdb", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("createdb", (Node *)makeInteger(false), @1);
else if (strcmp($1, "login") == 0)
$$ = makeDefElem("canlogin", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("canlogin", (Node *)makeInteger(true), @1);
else if (strcmp($1, "nologin") == 0)
$$ = makeDefElem("canlogin", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("canlogin", (Node *)makeInteger(false), @1);
else if (strcmp($1, "bypassrls") == 0)
$$ = makeDefElem("bypassrls", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("bypassrls", (Node *)makeInteger(true), @1);
else if (strcmp($1, "nobypassrls") == 0)
$$ = makeDefElem("bypassrls", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("bypassrls", (Node *)makeInteger(false), @1);
else if (strcmp($1, "noinherit") == 0)
{
/*
* Note that INHERIT is a keyword, so it's handled by main parser, but
* NOINHERIT is handled here.
*/
$$ = makeDefElem("inherit", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("inherit", (Node *)makeInteger(false), @1);
}
else
ereport(ERROR,
@@ -1192,21 +1192,21 @@ DropRoleStmt:
DROP ROLE role_list
{
DropRoleStmt *n = makeNode(DropRoleStmt);
n->missing_ok = FALSE;
n->missing_ok = false;
n->roles = $3;
$$ = (Node *)n;
}
| DROP ROLE IF_P EXISTS role_list
{
DropRoleStmt *n = makeNode(DropRoleStmt);
n->missing_ok = TRUE;
n->missing_ok = true;
n->roles = $5;
$$ = (Node *)n;
}
| DROP USER role_list
{
DropRoleStmt *n = makeNode(DropRoleStmt);
n->missing_ok = FALSE;
n->missing_ok = false;
n->roles = $3;
$$ = (Node *)n;
}
@@ -1214,20 +1214,20 @@ DropRoleStmt:
{
DropRoleStmt *n = makeNode(DropRoleStmt);
n->roles = $5;
n->missing_ok = TRUE;
n->missing_ok = true;
$$ = (Node *)n;
}
| DROP GROUP_P role_list
{
DropRoleStmt *n = makeNode(DropRoleStmt);
n->missing_ok = FALSE;
n->missing_ok = false;
n->roles = $3;
$$ = (Node *)n;
}
| DROP GROUP_P IF_P EXISTS role_list
{
DropRoleStmt *n = makeNode(DropRoleStmt);
n->missing_ok = TRUE;
n->missing_ok = true;
n->roles = $5;
$$ = (Node *)n;
}
@@ -1732,8 +1732,8 @@ constraints_set_list:
;
constraints_set_mode:
DEFERRED { $$ = TRUE; }
| IMMEDIATE { $$ = FALSE; }
DEFERRED { $$ = true; }
| IMMEDIATE { $$ = false; }
;
@@ -2174,7 +2174,7 @@ alter_table_cmd:
n->subtype = AT_DropColumn;
n->name = $5;
n->behavior = $6;
n->missing_ok = TRUE;
n->missing_ok = true;
$$ = (Node *)n;
}
/* ALTER TABLE <name> DROP [COLUMN] <colname> [RESTRICT|CASCADE] */
@@ -2184,7 +2184,7 @@ alter_table_cmd:
n->subtype = AT_DropColumn;
n->name = $3;
n->behavior = $4;
n->missing_ok = FALSE;
n->missing_ok = false;
$$ = (Node *)n;
}
/*
@@ -2252,7 +2252,7 @@ alter_table_cmd:
n->subtype = AT_DropConstraint;
n->name = $5;
n->behavior = $6;
n->missing_ok = TRUE;
n->missing_ok = true;
$$ = (Node *)n;
}
/* ALTER TABLE <name> DROP CONSTRAINT <name> [RESTRICT|CASCADE] */
@@ -2262,7 +2262,7 @@ alter_table_cmd:
n->subtype = AT_DropConstraint;
n->name = $3;
n->behavior = $4;
n->missing_ok = FALSE;
n->missing_ok = false;
$$ = (Node *)n;
}
/* ALTER TABLE <name> SET WITH OIDS */
@@ -2770,7 +2770,7 @@ alter_type_cmd:
n->subtype = AT_DropColumn;
n->name = $5;
n->behavior = $6;
n->missing_ok = TRUE;
n->missing_ok = true;
$$ = (Node *)n;
}
/* ALTER TYPE <name> DROP ATTRIBUTE <attname> [RESTRICT|CASCADE] */
@@ -2780,7 +2780,7 @@ alter_type_cmd:
n->subtype = AT_DropColumn;
n->name = $3;
n->behavior = $4;
n->missing_ok = FALSE;
n->missing_ok = false;
$$ = (Node *)n;
}
/* ALTER TYPE <name> ALTER ATTRIBUTE <attname> [SET DATA] TYPE <typename> [RESTRICT|CASCADE] */
@@ -2900,13 +2900,13 @@ CopyStmt: COPY opt_binary qualified_name opt_column_list opt_oids
;
copy_from:
FROM { $$ = TRUE; }
| TO { $$ = FALSE; }
FROM { $$ = true; }
| TO { $$ = false; }
;
opt_program:
PROGRAM { $$ = TRUE; }
| /* EMPTY */ { $$ = FALSE; }
PROGRAM { $$ = true; }
| /* EMPTY */ { $$ = false; }
;
/*
@@ -2937,11 +2937,11 @@ copy_opt_item:
}
| OIDS
{
$$ = makeDefElem("oids", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("oids", (Node *)makeInteger(true), @1);
}
| FREEZE
{
$$ = makeDefElem("freeze", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("freeze", (Node *)makeInteger(true), @1);
}
| DELIMITER opt_as Sconst
{
@@ -2957,7 +2957,7 @@ copy_opt_item:
}
| HEADER_P
{
$$ = makeDefElem("header", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("header", (Node *)makeInteger(true), @1);
}
| QUOTE opt_as Sconst
{
@@ -3002,7 +3002,7 @@ opt_binary:
opt_oids:
WITH OIDS
{
$$ = makeDefElem("oids", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("oids", (Node *)makeInteger(true), @1);
}
| /*EMPTY*/ { $$ = NULL; }
;
@@ -3656,8 +3656,8 @@ ConstraintElem:
}
;
opt_no_inherit: NO INHERIT { $$ = TRUE; }
| /* EMPTY */ { $$ = FALSE; }
opt_no_inherit: NO INHERIT { $$ = true; }
| /* EMPTY */ { $$ = false; }
;
opt_column_list:
@@ -3934,9 +3934,9 @@ create_as_target:
;
opt_with_data:
WITH DATA_P { $$ = TRUE; }
| WITH NO DATA_P { $$ = FALSE; }
| /*EMPTY*/ { $$ = TRUE; }
WITH DATA_P { $$ = true; }
| WITH NO DATA_P { $$ = false; }
| /*EMPTY*/ { $$ = true; }
;
@@ -4087,11 +4087,11 @@ SeqOptElem: AS SimpleTypename
}
| CYCLE
{
$$ = makeDefElem("cycle", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("cycle", (Node *)makeInteger(true), @1);
}
| NO CYCLE
{
$$ = makeDefElem("cycle", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("cycle", (Node *)makeInteger(false), @1);
}
| INCREMENT opt_by NumericOnly
{
@@ -4191,8 +4191,8 @@ CreatePLangStmt:
;
opt_trusted:
TRUSTED { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
TRUSTED { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
/* This ought to be just func_name, but that causes reduce/reduce conflicts
@@ -4343,7 +4343,7 @@ create_extension_opt_item:
}
| CASCADE
{
$$ = makeDefElem("cascade", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("cascade", (Node *)makeInteger(true), @1);
}
;
@@ -5207,9 +5207,9 @@ CreateTrigStmt:
n->columns = (List *) lsecond($5);
n->whenClause = $10;
n->transitionRels = $8;
n->isconstraint = FALSE;
n->deferrable = FALSE;
n->initdeferred = FALSE;
n->isconstraint = false;
n->deferrable = false;
n->initdeferred = false;
n->constrrel = NULL;
$$ = (Node *)n;
}
@@ -5223,13 +5223,13 @@ CreateTrigStmt:
n->relation = $8;
n->funcname = $17;
n->args = $19;
n->row = TRUE;
n->row = true;
n->timing = TRIGGER_TYPE_AFTER;
n->events = intVal(linitial($6));
n->columns = (List *) lsecond($6);
n->whenClause = $14;
n->transitionRels = NIL;
n->isconstraint = TRUE;
n->isconstraint = true;
processCASbits($10, @10, "TRIGGER",
&n->deferrable, &n->initdeferred, NULL,
NULL, yyscanner);
@@ -5303,12 +5303,12 @@ TriggerTransition:
;
TransitionOldOrNew:
NEW { $$ = TRUE; }
| OLD { $$ = FALSE; }
NEW { $$ = true; }
| OLD { $$ = false; }
;
TransitionRowOrTable:
TABLE { $$ = TRUE; }
TABLE { $$ = true; }
/*
* According to the standard, lack of a keyword here implies ROW.
* Support for that would require prohibiting ROW entirely here,
@@ -5317,7 +5317,7 @@ TransitionRowOrTable:
* next token. Requiring ROW seems cleanest and easiest to
* explain.
*/
| ROW { $$ = FALSE; }
| ROW { $$ = false; }
;
TransitionRelName:
@@ -5335,7 +5335,7 @@ TriggerForSpec:
* If ROW/STATEMENT not specified, default to
* STATEMENT, per SQL
*/
$$ = FALSE;
$$ = false;
}
;
@@ -5345,8 +5345,8 @@ TriggerForOptEach:
;
TriggerForType:
ROW { $$ = TRUE; }
| STATEMENT { $$ = FALSE; }
ROW { $$ = true; }
| STATEMENT { $$ = false; }
;
TriggerWhen:
@@ -5497,7 +5497,7 @@ CreateAssertStmt:
CreateTrigStmt *n = makeNode(CreateTrigStmt);
n->trigname = $3;
n->args = list_make1($6);
n->isconstraint = TRUE;
n->isconstraint = true;
processCASbits($8, @8, "ASSERTION",
&n->deferrable, &n->initdeferred, NULL,
NULL, yyscanner);
@@ -5877,8 +5877,8 @@ opclass_item:
}
;
opt_default: DEFAULT { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
opt_default: DEFAULT { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
opt_opfamily: FAMILY any_name { $$ = $2; }
@@ -5902,9 +5902,9 @@ opt_recheck: RECHECK
errmsg("RECHECK is no longer required"),
errhint("Update your data type."),
parser_errposition(@1)));
$$ = TRUE;
$$ = true;
}
| /*EMPTY*/ { $$ = FALSE; }
| /*EMPTY*/ { $$ = false; }
;
@@ -6052,7 +6052,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = $2;
n->missing_ok = TRUE;
n->missing_ok = true;
n->objects = $5;
n->behavior = $6;
n->concurrent = false;
@@ -6062,7 +6062,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = $2;
n->missing_ok = FALSE;
n->missing_ok = false;
n->objects = $3;
n->behavior = $4;
n->concurrent = false;
@@ -6072,7 +6072,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = $2;
n->missing_ok = TRUE;
n->missing_ok = true;
n->objects = $5;
n->behavior = $6;
n->concurrent = false;
@@ -6082,7 +6082,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = $2;
n->missing_ok = FALSE;
n->missing_ok = false;
n->objects = $3;
n->behavior = $4;
n->concurrent = false;
@@ -6112,7 +6112,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = OBJECT_TYPE;
n->missing_ok = FALSE;
n->missing_ok = false;
n->objects = $3;
n->behavior = $4;
n->concurrent = false;
@@ -6122,7 +6122,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = OBJECT_TYPE;
n->missing_ok = TRUE;
n->missing_ok = true;
n->objects = $5;
n->behavior = $6;
n->concurrent = false;
@@ -6132,7 +6132,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = OBJECT_DOMAIN;
n->missing_ok = FALSE;
n->missing_ok = false;
n->objects = $3;
n->behavior = $4;
n->concurrent = false;
@@ -6142,7 +6142,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = OBJECT_DOMAIN;
n->missing_ok = TRUE;
n->missing_ok = true;
n->objects = $5;
n->behavior = $6;
n->concurrent = false;
@@ -6152,7 +6152,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = OBJECT_INDEX;
n->missing_ok = FALSE;
n->missing_ok = false;
n->objects = $4;
n->behavior = $5;
n->concurrent = true;
@@ -6162,7 +6162,7 @@ DropStmt: DROP drop_type_any_name IF_P EXISTS any_name_list opt_drop_behavior
{
DropStmt *n = makeNode(DropStmt);
n->removeType = OBJECT_INDEX;
n->missing_ok = TRUE;
n->missing_ok = true;
n->objects = $6;
n->behavior = $7;
n->concurrent = true;
@@ -6584,13 +6584,13 @@ security_label: Sconst { $$ = $1; }
FetchStmt: FETCH fetch_args
{
FetchStmt *n = (FetchStmt *) $2;
n->ismove = FALSE;
n->ismove = false;
$$ = (Node *)n;
}
| MOVE fetch_args
{
FetchStmt *n = (FetchStmt *) $2;
n->ismove = TRUE;
n->ismove = true;
$$ = (Node *)n;
}
;
@@ -7000,8 +7000,8 @@ grantee:
opt_grant_grant_option:
WITH GRANT OPTION { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
WITH GRANT OPTION { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
/*****************************************************************************
@@ -7046,8 +7046,8 @@ RevokeRoleStmt:
}
;
opt_grant_admin_option: WITH ADMIN OPTION { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
opt_grant_admin_option: WITH ADMIN OPTION { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
opt_granted_by: GRANTED BY RoleSpec { $$ = $3; }
@@ -7210,13 +7210,13 @@ IndexStmt: CREATE opt_unique INDEX opt_concurrently opt_index_name
;
opt_unique:
UNIQUE { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
UNIQUE { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
opt_concurrently:
CONCURRENTLY { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
CONCURRENTLY { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
opt_index_name:
@@ -7344,8 +7344,8 @@ CreateFunctionStmt:
;
opt_or_replace:
OR REPLACE { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
OR REPLACE { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
func_args: '(' func_args_list ')' { $$ = $2; }
@@ -7514,7 +7514,7 @@ func_type: Typename { $$ = $1; }
{
$$ = makeTypeNameFromNameList(lcons(makeString($2), $3));
$$->pct_type = true;
$$->setof = TRUE;
$$->setof = true;
$$->location = @2;
}
;
@@ -7630,15 +7630,15 @@ createfunc_opt_list:
common_func_opt_item:
CALLED ON NULL_P INPUT_P
{
$$ = makeDefElem("strict", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("strict", (Node *)makeInteger(false), @1);
}
| RETURNS NULL_P ON NULL_P INPUT_P
{
$$ = makeDefElem("strict", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("strict", (Node *)makeInteger(true), @1);
}
| STRICT_P
{
$$ = makeDefElem("strict", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("strict", (Node *)makeInteger(true), @1);
}
| IMMUTABLE
{
@@ -7654,27 +7654,27 @@ common_func_opt_item:
}
| EXTERNAL SECURITY DEFINER
{
$$ = makeDefElem("security", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("security", (Node *)makeInteger(true), @1);
}
| EXTERNAL SECURITY INVOKER
{
$$ = makeDefElem("security", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("security", (Node *)makeInteger(false), @1);
}
| SECURITY DEFINER
{
$$ = makeDefElem("security", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("security", (Node *)makeInteger(true), @1);
}
| SECURITY INVOKER
{
$$ = makeDefElem("security", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("security", (Node *)makeInteger(false), @1);
}
| LEAKPROOF
{
$$ = makeDefElem("leakproof", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("leakproof", (Node *)makeInteger(true), @1);
}
| NOT LEAKPROOF
{
$$ = makeDefElem("leakproof", (Node *)makeInteger(FALSE), @1);
$$ = makeDefElem("leakproof", (Node *)makeInteger(false), @1);
}
| COST NumericOnly
{
@@ -7710,7 +7710,7 @@ createfunc_opt_item:
}
| WINDOW
{
$$ = makeDefElem("window", (Node *)makeInteger(TRUE), @1);
$$ = makeDefElem("window", (Node *)makeInteger(true), @1);
}
| common_func_opt_item
{
@@ -7999,8 +7999,8 @@ DropCastStmt: DROP CAST opt_if_exists '(' Typename AS Typename ')' opt_drop_beha
}
;
opt_if_exists: IF_P EXISTS { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
opt_if_exists: IF_P EXISTS { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
@@ -8128,7 +8128,7 @@ AlterTblSpcStmt:
makeNode(AlterTableSpaceOptionsStmt);
n->tablespacename = $3;
n->options = $5;
n->isReset = FALSE;
n->isReset = false;
$$ = (Node *)n;
}
| ALTER TABLESPACE name RESET reloptions
@@ -8137,7 +8137,7 @@ AlterTblSpcStmt:
makeNode(AlterTableSpaceOptionsStmt);
n->tablespacename = $3;
n->options = $5;
n->isReset = TRUE;
n->isReset = true;
$$ = (Node *)n;
}
;
@@ -9164,7 +9164,7 @@ CreatePublicationStmt:
n->tables = (List *)$4;
/* FOR ALL TABLES */
else
n->for_all_tables = TRUE;
n->for_all_tables = true;
}
$$ = (Node *)n;
}
@@ -9182,7 +9182,7 @@ publication_for_tables:
}
| FOR ALL TABLES
{
$$ = (Node *) makeInteger(TRUE);
$$ = (Node *) makeInteger(true);
}
;
@@ -9317,7 +9317,7 @@ AlterSubscriptionStmt:
n->kind = ALTER_SUBSCRIPTION_ENABLED;
n->subname = $3;
n->options = list_make1(makeDefElem("enabled",
(Node *)makeInteger(TRUE), @1));
(Node *)makeInteger(true), @1));
$$ = (Node *)n;
}
| ALTER SUBSCRIPTION name DISABLE_P
@@ -9327,7 +9327,7 @@ AlterSubscriptionStmt:
n->kind = ALTER_SUBSCRIPTION_ENABLED;
n->subname = $3;
n->options = list_make1(makeDefElem("enabled",
(Node *)makeInteger(FALSE), @1));
(Node *)makeInteger(false), @1));
$$ = (Node *)n;
}
;
@@ -9420,9 +9420,9 @@ event: SELECT { $$ = CMD_SELECT; }
;
opt_instead:
INSTEAD { $$ = TRUE; }
| ALSO { $$ = FALSE; }
| /*EMPTY*/ { $$ = FALSE; }
INSTEAD { $$ = true; }
| ALSO { $$ = false; }
| /*EMPTY*/ { $$ = false; }
;
@@ -9598,16 +9598,16 @@ transaction_mode_item:
makeStringConst($3, @3), @1); }
| READ ONLY
{ $$ = makeDefElem("transaction_read_only",
makeIntConst(TRUE, @1), @1); }
makeIntConst(true, @1), @1); }
| READ WRITE
{ $$ = makeDefElem("transaction_read_only",
makeIntConst(FALSE, @1), @1); }
makeIntConst(false, @1), @1); }
| DEFERRABLE
{ $$ = makeDefElem("transaction_deferrable",
makeIntConst(TRUE, @1), @1); }
makeIntConst(true, @1), @1); }
| NOT DEFERRABLE
{ $$ = makeDefElem("transaction_deferrable",
makeIntConst(FALSE, @1), @1); }
makeIntConst(false, @1), @1); }
;
/* Syntax with commas is SQL-spec, without commas is Postgres historical */
@@ -9846,14 +9846,14 @@ DropdbStmt: DROP DATABASE database_name
{
DropdbStmt *n = makeNode(DropdbStmt);
n->dbname = $3;
n->missing_ok = FALSE;
n->missing_ok = false;
$$ = (Node *)n;
}
| DROP DATABASE IF_P EXISTS database_name
{
DropdbStmt *n = makeNode(DropdbStmt);
n->dbname = $5;
n->missing_ok = TRUE;
n->missing_ok = true;
$$ = (Node *)n;
}
;
@@ -10222,16 +10222,16 @@ analyze_keyword:
;
opt_verbose:
VERBOSE { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
VERBOSE { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
opt_full: FULL { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
opt_full: FULL { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
opt_freeze: FREEZE { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
opt_freeze: FREEZE { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
opt_name_list:
@@ -10648,8 +10648,8 @@ lock_type: ACCESS SHARE { $$ = AccessShareLock; }
| ACCESS EXCLUSIVE { $$ = AccessExclusiveLock; }
;
opt_nowait: NOWAIT { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
opt_nowait: NOWAIT { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
opt_nowait_or_skip:
@@ -11116,9 +11116,9 @@ opt_table: TABLE {}
;
all_or_distinct:
ALL { $$ = TRUE; }
| DISTINCT { $$ = FALSE; }
| /*EMPTY*/ { $$ = FALSE; }
ALL { $$ = true; }
| DISTINCT { $$ = false; }
| /*EMPTY*/ { $$ = false; }
;
/* We use (NIL) as a placeholder to indicate that all target expressions
@@ -11547,7 +11547,7 @@ joined_table:
/* CROSS JOIN is same as unqualified inner join */
JoinExpr *n = makeNode(JoinExpr);
n->jointype = JOIN_INNER;
n->isNatural = FALSE;
n->isNatural = false;
n->larg = $1;
n->rarg = $4;
n->usingClause = NIL;
@@ -11558,7 +11558,7 @@ joined_table:
{
JoinExpr *n = makeNode(JoinExpr);
n->jointype = $2;
n->isNatural = FALSE;
n->isNatural = false;
n->larg = $1;
n->rarg = $4;
if ($5 != NULL && IsA($5, List))
@@ -11572,7 +11572,7 @@ joined_table:
/* letting join_type reduce to empty doesn't work */
JoinExpr *n = makeNode(JoinExpr);
n->jointype = JOIN_INNER;
n->isNatural = FALSE;
n->isNatural = false;
n->larg = $1;
n->rarg = $3;
if ($4 != NULL && IsA($4, List))
@@ -11585,7 +11585,7 @@ joined_table:
{
JoinExpr *n = makeNode(JoinExpr);
n->jointype = $3;
n->isNatural = TRUE;
n->isNatural = true;
n->larg = $1;
n->rarg = $5;
n->usingClause = NIL; /* figure out which columns later... */
@@ -11597,7 +11597,7 @@ joined_table:
/* letting join_type reduce to empty doesn't work */
JoinExpr *n = makeNode(JoinExpr);
n->jointype = JOIN_INNER;
n->isNatural = TRUE;
n->isNatural = true;
n->larg = $1;
n->rarg = $4;
n->usingClause = NIL; /* figure out which columns later... */
@@ -12067,7 +12067,7 @@ Typename: SimpleTypename opt_array_bounds
{
$$ = $2;
$$->arrayBounds = $3;
$$->setof = TRUE;
$$->setof = true;
}
/* SQL standard syntax, currently only one-dimensional */
| SimpleTypename ARRAY '[' Iconst ']'
@@ -12079,7 +12079,7 @@ Typename: SimpleTypename opt_array_bounds
{
$$ = $2;
$$->arrayBounds = list_make1(makeInteger($5));
$$->setof = TRUE;
$$->setof = true;
}
| SimpleTypename ARRAY
{
@@ -12090,7 +12090,7 @@ Typename: SimpleTypename opt_array_bounds
{
$$ = $2;
$$->arrayBounds = list_make1(makeInteger(-1));
$$->setof = TRUE;
$$->setof = true;
}
;
@@ -12377,8 +12377,8 @@ character: CHARACTER opt_varying
;
opt_varying:
VARYING { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
VARYING { $$ = true; }
| /*EMPTY*/ { $$ = false; }
;
/*
@@ -12430,9 +12430,9 @@ ConstInterval:
;
opt_timezone:
WITH_LA TIME ZONE { $$ = TRUE; }
| WITHOUT TIME ZONE { $$ = FALSE; }
| /*EMPTY*/ { $$ = FALSE; }
WITH_LA TIME ZONE { $$ = true; }
| WITHOUT TIME ZONE { $$ = false; }
| /*EMPTY*/ { $$ = false; }
;
opt_interval:
@@ -13193,14 +13193,14 @@ func_application: func_name '(' ')'
| func_name '(' VARIADIC func_arg_expr opt_sort_clause ')'
{
FuncCall *n = makeFuncCall($1, list_make1($4), @1);
n->func_variadic = TRUE;
n->func_variadic = true;
n->agg_order = $5;
$$ = (Node *)n;
}
| func_name '(' func_arg_list ',' VARIADIC func_arg_expr opt_sort_clause ')'
{
FuncCall *n = makeFuncCall($1, lappend($3, $6), @1);
n->func_variadic = TRUE;
n->func_variadic = true;
n->agg_order = $7;
$$ = (Node *)n;
}
@@ -13218,7 +13218,7 @@ func_application: func_name '(' ')'
{
FuncCall *n = makeFuncCall($1, $4, @1);
n->agg_order = $5;
n->agg_distinct = TRUE;
n->agg_distinct = true;
$$ = (Node *)n;
}
| func_name '(' '*' ')'
@@ -13234,7 +13234,7 @@ func_application: func_name '(' ')'
* really was.
*/
FuncCall *n = makeFuncCall($1, NIL, @1);
n->agg_star = TRUE;
n->agg_star = true;
$$ = (Node *)n;
}
;
@@ -13278,7 +13278,7 @@ func_expr: func_application within_group_clause filter_clause over_clause
errmsg("cannot use VARIADIC with WITHIN GROUP"),
parser_errposition(@2)));
n->agg_order = $2;
n->agg_within_group = TRUE;
n->agg_within_group = true;
}
n->agg_filter = $3;
n->over = $4;
@@ -13568,9 +13568,9 @@ document_or_content: DOCUMENT_P { $$ = XMLOPTION_DOCUMENT; }
| CONTENT_P { $$ = XMLOPTION_CONTENT; }
;
xml_whitespace_option: PRESERVE WHITESPACE_P { $$ = TRUE; }
| STRIP_P WHITESPACE_P { $$ = FALSE; }
| /*EMPTY*/ { $$ = FALSE; }
xml_whitespace_option: PRESERVE WHITESPACE_P { $$ = true; }
| STRIP_P WHITESPACE_P { $$ = false; }
| /*EMPTY*/ { $$ = false; }
;
/* We allow several variants for SQL and other compatibility. */
@@ -14442,11 +14442,11 @@ AexprConst: Iconst
}
| TRUE_P
{
$$ = makeBoolAConst(TRUE, @1);
$$ = makeBoolAConst(true, @1);
}
| FALSE_P
{
$$ = makeBoolAConst(FALSE, @1);
$$ = makeBoolAConst(false, @1);
}
| NULL_P
{

View File

@@ -2056,7 +2056,7 @@ findTargetlistEntrySQL99(ParseState *pstate, Node *node, List **tlist,
/*
* If no matches, construct a new target entry which is appended to the
* end of the target list. This target is given resjunk = TRUE so that it
* end of the target list. This target is given resjunk = true so that it
* will not be projected into the final tuple.
*/
target_result = transformTargetEntry(pstate, node, expr, exprKind,

View File

@@ -1465,7 +1465,7 @@ coerce_to_common_type(ParseState *pstate, Node *node,
* that is, so long as there is no use of ANYELEMENT. This is mostly for
* backwards compatibility with the pre-7.4 behavior of ANYARRAY.
*
* We do not ereport here, but just return FALSE if a rule is violated.
* We do not ereport here, but just return false if a rule is violated.
*/
bool
check_generic_type_consistency(Oid *actual_arg_types,
@@ -2088,7 +2088,7 @@ TypeCategory(Oid type)
/* IsPreferredType()
* Check if this type is a preferred type for the given category.
*
* If category is TYPCATEGORY_INVALID, then we'll return TRUE for preferred
* If category is TYPCATEGORY_INVALID, then we'll return true for preferred
* types of any category; otherwise, only for preferred types of that
* category.
*/

View File

@@ -1023,7 +1023,7 @@ static HTAB *OprCacheHash = NULL;
* make_oper_cache_key
* Fill the lookup key struct given operator name and arg types.
*
* Returns TRUE if successful, FALSE if the search_path overflowed
* Returns true if successful, false if the search_path overflowed
* (hence no caching is possible).
*
* pstate/location are used only to report the error position; pass NULL/-1

View File

@@ -2157,8 +2157,8 @@ addRTEtoQuery(ParseState *pstate, RangeTblEntry *rte,
*
* This creates lists of an RTE's column names (aliases if provided, else
* real names) and Vars for each column. Only user columns are considered.
* If include_dropped is FALSE then dropped columns are omitted from the
* results. If include_dropped is TRUE then empty strings and NULL constants
* If include_dropped is false then dropped columns are omitted from the
* results. If include_dropped is true then empty strings and NULL constants
* (not Vars!) are returned for dropped columns.
*
* rtindex, sublevels_up, and location are the varno, varlevelsup, and location
@@ -3315,7 +3315,7 @@ errorMissingColumn(ParseState *pstate,
/*
* Examine a fully-parsed query, and return TRUE iff any relation underlying
* Examine a fully-parsed query, and return true iff any relation underlying
* the query is a temporary relation (table, view, or materialized view).
*/
bool

View File

@@ -628,7 +628,7 @@ transformColumnDefinition(CreateStmtContext *cxt, ColumnDef *column)
column->colname, cxt->relation->relname),
parser_errposition(cxt->pstate,
constraint->location)));
column->is_not_null = FALSE;
column->is_not_null = false;
saw_nullable = true;
break;
@@ -640,7 +640,7 @@ transformColumnDefinition(CreateStmtContext *cxt, ColumnDef *column)
column->colname, cxt->relation->relname),
parser_errposition(cxt->pstate,
constraint->location)));
column->is_not_null = TRUE;
column->is_not_null = true;
saw_nullable = true;
break;
@@ -680,7 +680,7 @@ transformColumnDefinition(CreateStmtContext *cxt, ColumnDef *column)
column->identity = constraint->generated_when;
saw_identity = true;
column->is_not_null = TRUE;
column->is_not_null = true;
break;
}
@@ -2010,7 +2010,7 @@ transformIndexConstraint(Constraint *constraint, CreateStmtContext *cxt)
{
/* found column in the new table; force it to be NOT NULL */
if (constraint->contype == CONSTR_PRIMARY)
column->is_not_null = TRUE;
column->is_not_null = true;
}
else if (SystemAttributeByName(key, cxt->hasoids) != NULL)
{

View File

@@ -209,7 +209,7 @@ truncate_identifier(char *ident, int len, bool warn)
}
/*
* scanner_isspace() --- return TRUE if flex scanner considers char whitespace
* scanner_isspace() --- return true if flex scanner considers char whitespace
*
* This should be used instead of the potentially locale-dependent isspace()
* function when it's important to match the lexer's behavior.