mirror of
https://github.com/postgres/postgres.git
synced 2026-03-04 22:32:20 -05:00
Fix wording of several extended stats comments
Reported-by: Thomas Munro Discussion: https://www.postgresql.org/message-id/flat/20200113230008.g67iyk4cs3xbnjju@development
This commit is contained in:
parent
1558413432
commit
6f72dbc48b
1 changed files with 2 additions and 2 deletions
|
|
@ -993,7 +993,7 @@ statext_is_compatible_clause_internal(PlannerInfo *root, Node *clause,
|
|||
if (list_length(expr->args) != 2)
|
||||
return false;
|
||||
|
||||
/* Check if the expression the right shape (one Var, one Const) */
|
||||
/* Check if the expression has the right shape (one Var, one Const) */
|
||||
if (!examine_clause_args(expr->args, &var, NULL, NULL))
|
||||
return false;
|
||||
|
||||
|
|
@ -1049,7 +1049,7 @@ statext_is_compatible_clause_internal(PlannerInfo *root, Node *clause,
|
|||
if (list_length(expr->args) != 2)
|
||||
return false;
|
||||
|
||||
/* Check if the expression the right shape (one Var, one Const) */
|
||||
/* Check if the expression has the right shape (one Var, one Const) */
|
||||
if (!examine_clause_args(expr->args, &var, NULL, NULL))
|
||||
return false;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue