Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
6d177e28
Commit
6d177e28
authored
May 11, 2021
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo
parent
ff516792
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/backend/parser/parse_cte.c
src/backend/parser/parse_cte.c
+1
-1
src/test/regress/expected/with.out
src/test/regress/expected/with.out
+1
-1
No files found.
src/backend/parser/parse_cte.c
View file @
6d177e28
...
...
@@ -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
));
}
}
...
...
src/test/regress/expected/with.out
View file @
6d177e28
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment