~ubuntu-branches/ubuntu/precise/pgpool2/precise

« back to all changes in this revision

Viewing changes to parser/nodes.c

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2007-03-21 13:18:33 UTC
  • Revision ID: james.westby@ubuntu.com-20070321131833-0kj07cu429j8b94n
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * nodes.c
 
4
 *        support code for nodes (now that we have removed the home-brew
 
5
 *        inheritance system, our support code for nodes is much simpler)
 
6
 *
 
7
 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 *
 
11
 * IDENTIFICATION
 
12
 *        $PostgreSQL: pgsql/src/backend/nodes/nodes.c,v 1.25 2004/12/31 21:59:55 pgsql Exp $
 
13
 *
 
14
 * HISTORY
 
15
 *        Andrew Yu                     Oct 20, 1994    file creation
 
16
 *
 
17
 *-------------------------------------------------------------------------
 
18
 */
 
19
/*#include "postgres.h"*/
 
20
 
 
21
#include "nodes.h"
 
22
 
 
23
/*
 
24
 * Support for newNode() macro
 
25
 */
 
26
 
 
27
Node       *newNodeMacroHolder;