/*------------------------------------------------------------------------- * * var.h * prototypes for var.c. * * * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * * $Id: var.h,v 1.11 2000/01/26 05:58:21 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef VAR_H #define VAR_H #include "nodes/primnodes.h" extern List *pull_varnos(Node *me); extern bool contain_var_clause(Node *clause); extern List *pull_var_clause(Node *clause, bool includeUpperVars); #endif /* VAR_H */