mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Cleanup various comparisons with the constant "true".
Itagaki Takahiro, with slight modifications.
This commit is contained in:
@ -1104,7 +1104,7 @@ init_params(List *options, bool isInit,
|
||||
if (is_cycled != NULL)
|
||||
{
|
||||
new->is_cycled = intVal(is_cycled->arg);
|
||||
Assert(new->is_cycled == false || new->is_cycled == true);
|
||||
Assert(BoolIsValid(new->is_cycled));
|
||||
}
|
||||
else if (isInit)
|
||||
new->is_cycled = false;
|
||||
|
Reference in New Issue
Block a user