mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-16 19:37:00 +08:00
- code compile tested, but due to a yet unresolved problem with
parse.h's creation, compile not completed...
22 lines
547 B
C
22 lines
547 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* var.h--
|
|
* prototypes for var.c.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: var.h,v 1.1 1996/08/28 07:23:29 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef VAR_H
|
|
#define VAR_H
|
|
|
|
extern List *pull_varnos(Node *me);
|
|
extern bool contain_var_clause(Node *clause);
|
|
extern List *pull_var_clause(Node *clause);
|
|
extern bool var_equal(Var *var1, Var *var2);
|
|
|
|
#endif /* VAR_H */
|