mirror of
https://github.com/postgres/postgres.git
synced 2025-09-11 00:12:06 +03:00
Fix for regproc
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/clauses.c,v 1.21 1998/08/31 07:19:56 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/clauses.c,v 1.22 1998/08/31 07:55:47 momjian Exp $
|
||||
*
|
||||
* HISTORY
|
||||
* AUTHOR DATE MAJOR EVENT
|
||||
@@ -199,7 +199,8 @@ bool
|
||||
or_clause(Node *clause)
|
||||
{
|
||||
return clause != NULL &&
|
||||
nodeTag(clause) == T_Expr && ((Expr *) clause)->opType == OR_EXPR);
|
||||
nodeTag(clause) == T_Expr &&
|
||||
((Expr *) clause)->opType == OR_EXPR;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user