diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2017-03-14 11:38:30 -0400 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2017-03-14 12:58:39 -0400 |
| commit | f97a028d8ee3e7d64a93285707af94b612c47651 (patch) | |
| tree | 493c190e8470843ca2cd73ac06f86476d5721062 /src/backend/parser | |
| parent | 5ed6fff6b729c3cce55d4abc8f695da93aa40a0d (diff) | |
| download | postgresql-f97a028d8ee3e7d64a93285707af94b612c47651.tar.gz | |
Spelling fixes in code comments
From: Josh Soref <jsoref@gmail.com>
Diffstat (limited to 'src/backend/parser')
| -rw-r--r-- | src/backend/parser/parse_collate.c | 4 | ||||
| -rw-r--r-- | src/backend/parser/parse_param.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/parser/parse_collate.c b/src/backend/parser/parse_collate.c index 52ac722790..cc235d422f 100644 --- a/src/backend/parser/parse_collate.c +++ b/src/backend/parser/parse_collate.c @@ -802,7 +802,7 @@ merge_collation_state(Oid collation, else if (collation != DEFAULT_COLLATION_OID) { /* - * Ooops, we have a conflict. We cannot throw error + * Oops, we have a conflict. We cannot throw error * here, since the conflict could be resolved by a * later sibling CollateExpr, or the parent might not * care about collation anyway. Return enough info to @@ -821,7 +821,7 @@ merge_collation_state(Oid collation, if (collation != context->collation) { /* - * Ooops, we have a conflict of explicit COLLATE clauses. + * Oops, we have a conflict of explicit COLLATE clauses. * Here we choose to throw error immediately; that is what * the SQL standard says to do, and there's no good reason * to be less strict. diff --git a/src/backend/parser/parse_param.c b/src/backend/parser/parse_param.c index 2575e02325..20fd83f095 100644 --- a/src/backend/parser/parse_param.c +++ b/src/backend/parser/parse_param.c @@ -210,7 +210,7 @@ variable_coerce_param_hook(ParseState *pstate, Param *param, } else { - /* Ooops */ + /* Oops */ ereport(ERROR, (errcode(ERRCODE_AMBIGUOUS_PARAMETER), errmsg("inconsistent types deduced for parameter $%d", |
