From 6d177e2813a2b4415539e2861b595583cc1a8f71 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 11 May 2021 09:06:49 +0200 Subject: [PATCH] Fix typo --- src/backend/parser/parse_cte.c | 2 +- src/test/regress/expected/with.out | 2 +- 2 files changed, 2 insertions(+), 2 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)); } } diff --git a/src/test/regress/expected/with.out b/src/test/regress/expected/with.out index 0affacc1915..584bdc6600b 100644 --- a/src/test/regress/expected/with.out +++ b/src/test/regress/expected/with.out @@ -1253,7 +1253,7 @@ with recursive search_graph(f, t, label) as ( ) search depth first by f, t set foo cycle f, t set is_cycle to true default false using foo select * from search_graph; -ERROR: search_sequence column name and cycle path column name are the same +ERROR: search sequence column name and cycle path column name are the same LINE 7: ) search depth first by f, t set foo ^ -- test ruleutils and view expansion