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
1be01431
Commit
1be01431
authored
Aug 04, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix merge failures for anonymous-type patch. From Joe Conway.
parent
e053d207
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
src/backend/catalog/pg_proc.c
src/backend/catalog/pg_proc.c
+2
-2
src/backend/nodes/equalfuncs.c
src/backend/nodes/equalfuncs.c
+4
-5
No files found.
src/backend/catalog/pg_proc.c
View file @
1be01431
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_proc.c,v 1.8
4 2002/08/04 20:00:15 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_proc.c,v 1.8
5 2002/08/04 23:49:59 tgl
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -318,7 +318,7 @@ ProcedureCreate(const char *procedureName,
...
@@ -318,7 +318,7 @@ ProcedureCreate(const char *procedureName,
* type he claims.
* type he claims.
*/
*/
static
void
static
void
checkretval
(
Oid
rettype
,
char
fn_typtype
/* XXX FIX ME */
,
List
*
queryTreeList
)
checkretval
(
Oid
rettype
,
char
fn_typtype
,
List
*
queryTreeList
)
{
{
Query
*
parse
;
Query
*
parse
;
int
cmd
;
int
cmd
;
...
...
src/backend/nodes/equalfuncs.c
View file @
1be01431
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.14
8 2002/08/04 20:00:15 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.14
9 2002/08/04 23:49:59 tgl
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -1607,10 +1607,7 @@ _equalRangeVar(RangeVar *a, RangeVar *b)
...
@@ -1607,10 +1607,7 @@ _equalRangeVar(RangeVar *a, RangeVar *b)
return
false
;
return
false
;
if
(
!
equal
(
a
->
alias
,
b
->
alias
))
if
(
!
equal
(
a
->
alias
,
b
->
alias
))
return
false
;
return
false
;
/* FIX ME XXX
if (!equal(a->coldeflist, b->coldeflist))
return false;
*/
return
true
;
return
true
;
}
}
...
@@ -1632,6 +1629,8 @@ _equalRangeFunction(RangeFunction *a, RangeFunction *b)
...
@@ -1632,6 +1629,8 @@ _equalRangeFunction(RangeFunction *a, RangeFunction *b)
return
false
;
return
false
;
if
(
!
equal
(
a
->
alias
,
b
->
alias
))
if
(
!
equal
(
a
->
alias
,
b
->
alias
))
return
false
;
return
false
;
if
(
!
equal
(
a
->
coldeflist
,
b
->
coldeflist
))
return
false
;
return
true
;
return
true
;
}
}
...
...
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