mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
Fix merge failures for anonymous-type patch. From Joe Conway.
This commit is contained in:
parent
e053d2071d
commit
1be014313a
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_proc.c,v 1.84 2002/08/04 20:00:15 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_proc.c,v 1.85 2002/08/04 23:49:59 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -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;
|
||||||
|
@ -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.148 2002/08/04 20:00:15 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.149 2002/08/04 23:49:59 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -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)
|
|||||||
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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user