aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/nodeFuncs.h
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-28 01:59:28 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-28 01:59:28 +0000
commit105409746499657acdffc109db9d343b464bda1f (patch)
treead73a9b45b4500ddedb5b7d18edcf90ec7cb35c5 /src/include/nodes/nodeFuncs.h
parentca405ae4bf50a0074cf6e7ffb4873d5c9a861403 (diff)
downloadpostgresql-105409746499657acdffc109db9d343b464bda1f.tar.gz
postgresql-105409746499657acdffc109db9d343b464bda1f.zip
More cleanups of the include files
- centralizing to simplify the -I's required to compile
Diffstat (limited to 'src/include/nodes/nodeFuncs.h')
-rw-r--r--src/include/nodes/nodeFuncs.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/include/nodes/nodeFuncs.h b/src/include/nodes/nodeFuncs.h
new file mode 100644
index 00000000000..40bde8ae16b
--- /dev/null
+++ b/src/include/nodes/nodeFuncs.h
@@ -0,0 +1,23 @@
+/*-------------------------------------------------------------------------
+ *
+ * nodeFuncs.h--
+ *
+ *
+ *
+ * Copyright (c) 1994, Regents of the University of California
+ *
+ * $Id: nodeFuncs.h,v 1.1 1996/08/28 01:57:35 scrappy Exp $
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef NODEFUNCS_H
+#define NODEFUNCS_H
+
+extern bool single_node(Node *node);
+extern bool var_is_outer(Var *var);
+extern bool var_is_inner(Var *var);
+extern bool var_is_rel(Var *var);
+extern Oper *replace_opid(Oper *oper);
+extern bool non_null(Expr *c);
+
+#endif /* NODEFUNCS_H */