Commit 6d177e28 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix typo

parent ff516792
...@@ -524,7 +524,7 @@ analyzeCTE(ParseState *pstate, CommonTableExpr *cte) ...@@ -524,7 +524,7 @@ analyzeCTE(ParseState *pstate, CommonTableExpr *cte)
cte->cycle_clause->cycle_path_column) == 0) cte->cycle_clause->cycle_path_column) == 0)
ereport(ERROR, ereport(ERROR,
errcode(ERRCODE_SYNTAX_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)); parser_errposition(pstate, cte->search_clause->location));
} }
} }
......
...@@ -1253,7 +1253,7 @@ with recursive search_graph(f, t, label) as ( ...@@ -1253,7 +1253,7 @@ with recursive search_graph(f, t, label) as (
) search depth first by f, t set foo ) search depth first by f, t set foo
cycle f, t set is_cycle to true default false using foo cycle f, t set is_cycle to true default false using foo
select * from search_graph; 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 LINE 7: ) search depth first by f, t set foo
^ ^
-- test ruleutils and view expansion -- test ruleutils and view expansion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment