mirror of
https://github.com/postgres/postgres.git
synced 2026-03-23 19:04:11 -04:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
23 lines
616 B
C
23 lines
616 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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 */
|