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
91e6f51a
Commit
91e6f51a
authored
Jun 25, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'third' -> 'fourth' where needed, per Joe Conway.
parent
6f30d566
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
contrib/tablefunc/tablefunc.c
contrib/tablefunc/tablefunc.c
+2
-2
No files found.
contrib/tablefunc/tablefunc.c
View file @
91e6f51a
...
@@ -1366,10 +1366,10 @@ validateConnectbyTupleDesc(TupleDesc tupdesc, bool show_branch)
...
@@ -1366,10 +1366,10 @@ validateConnectbyTupleDesc(TupleDesc tupdesc, bool show_branch)
elog
(
ERROR
,
"Query-specified return tuple not valid for Connectby: "
elog
(
ERROR
,
"Query-specified return tuple not valid for Connectby: "
"third column must be type %s"
,
format_type_be
(
INT4OID
));
"third column must be type %s"
,
format_type_be
(
INT4OID
));
/* check that the type of the forth column is TEXT if applicable */
/* check that the type of the fo
u
rth column is TEXT if applicable */
if
(
show_branch
&&
tupdesc
->
attrs
[
3
]
->
atttypid
!=
TEXTOID
)
if
(
show_branch
&&
tupdesc
->
attrs
[
3
]
->
atttypid
!=
TEXTOID
)
elog
(
ERROR
,
"Query-specified return tuple not valid for Connectby: "
elog
(
ERROR
,
"Query-specified return tuple not valid for Connectby: "
"
third
column must be type %s"
,
format_type_be
(
TEXTOID
));
"
fourth
column must be type %s"
,
format_type_be
(
TEXTOID
));
/* OK, the tupdesc is valid for our purposes */
/* OK, the tupdesc is valid for our purposes */
}
}
...
...
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