mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Cleanups needed for indent.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/planner.c,v 1.4 1997/09/05 19:32:28 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/planner.c,v 1.5 1997/09/05 19:59:11 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -380,11 +380,11 @@ pg_checkretval(Oid rettype, QueryTreeList *queryTreeList)
|
||||
tletype = (Oid) ((Var*)thenode)->vartype;
|
||||
else if (IsA(thenode,Const))
|
||||
tletype = (Oid) ((Const*)thenode)->consttype;
|
||||
else if (IsA(thenode,Param)) {
|
||||
else if (IsA(thenode,Param))
|
||||
tletype = (Oid) ((Param*)thenode)->paramtype;
|
||||
else if (IsA(thenode,Expr)) {
|
||||
else if (IsA(thenode,Expr))
|
||||
tletype = Expr;
|
||||
} else if (IsA(thenode,LispList)) {
|
||||
else if (IsA(thenode,LispList)) {
|
||||
thenode = lfirst(thenode);
|
||||
if (IsA(thenode,Oper))
|
||||
tletype = (Oid) get_opresulttype((Oper*)thenode);
|
||||
|
Reference in New Issue
Block a user