mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Back out array mega-patch.
Joe Conway
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/clauses.c,v 1.140 2003/06/24 23:14:43 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/clauses.c,v 1.141 2003/06/25 21:30:30 momjian Exp $
|
||||
*
|
||||
* HISTORY
|
||||
* AUTHOR DATE MAJOR EVENT
|
||||
@@ -132,28 +132,6 @@ get_rightop(Expr *clause)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* FUNCTION clause functions
|
||||
*****************************************************************************/
|
||||
|
||||
/*
|
||||
* make_funcclause
|
||||
* Creates a function clause given its function info and argument list.
|
||||
*/
|
||||
Expr *
|
||||
make_funcclause(Oid funcid, Oid funcresulttype, bool funcretset,
|
||||
CoercionForm funcformat, List *funcargs)
|
||||
{
|
||||
FuncExpr *expr = makeNode(FuncExpr);
|
||||
|
||||
expr->funcid = funcid;
|
||||
expr->funcresulttype = funcresulttype;
|
||||
expr->funcretset = funcretset;
|
||||
expr->funcformat = funcformat;
|
||||
expr->args = funcargs;
|
||||
return (Expr *) expr;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* NOT clause functions
|
||||
*****************************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user