Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6d177e2

Browse files
committed
Fix typo
1 parent ff51679 commit 6d177e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/backend/parser/parse_cte.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ analyzeCTE(ParseState *pstate, CommonTableExpr *cte)
524524
cte->cycle_clause->cycle_path_column) == 0)
525525
ereport(ERROR,
526526
errcode(ERRCODE_SYNTAX_ERROR),
527-
errmsg("search_sequence column name and cycle path column name are the same"),
527+
errmsg("search sequence column name and cycle path column name are the same"),
528528
parser_errposition(pstate, cte->search_clause->location));
529529
}
530530
}

src/test/regress/expected/with.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ with recursive search_graph(f, t, label) as (
12531253
) search depth first by f, t set foo
12541254
cycle f, t set is_cycle to true default false using foo
12551255
select * from search_graph;
1256-
ERROR: search_sequence column name and cycle path column name are the same
1256+
ERROR: search sequence column name and cycle path column name are the same
12571257
LINE 7: ) search depth first by f, t set foo
12581258
^
12591259
-- test ruleutils and view expansion

0 commit comments

Comments
 (0)