summaryrefslogtreecommitdiff
path: root/src/backend/parser
diff options
context:
space:
mode:
authorPeter Eisentraut2021-05-11 07:06:49 +0000
committerPeter Eisentraut2021-05-11 07:06:49 +0000
commit6d177e2813a2b4415539e2861b595583cc1a8f71 (patch)
treeda5cb6b17a07a382d3b693a82f107f6e1a42208b /src/backend/parser
parentff51679220ce31091bfdbc96d2e90fc02ac6f329 (diff)
Fix typo
Diffstat (limited to 'src/backend/parser')
-rw-r--r--src/backend/parser/parse_cte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/parser/parse_cte.c b/src/backend/parser/parse_cte.c
index f46d63d4513..ee7613187aa 100644
--- a/src/backend/parser/parse_cte.c
+++ b/src/backend/parser/parse_cte.c
@@ -524,7 +524,7 @@ analyzeCTE(ParseState *pstate, CommonTableExpr *cte)
cte->cycle_clause->cycle_path_column) == 0)
ereport(ERROR,
errcode(ERRCODE_SYNTAX_ERROR),
- errmsg("search_sequence column name and cycle path column name are the same"),
+ errmsg("search sequence column name and cycle path column name are the same"),
parser_errposition(pstate, cte->search_clause->location));
}
}