Skip to content
Snippets Groups Projects
Select Git revision
  • benchmark-tools
  • postgres-lambda
  • master default
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
23 results

nodes.c

Blame
  • nodes.c 900 B
    /*-------------------------------------------------------------------------
     *
     * nodes.c
     *	  support code for nodes (now that we have removed the home-brew
     *	  inheritance system, our support code for nodes is much simpler)
     *
     * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
     * Portions Copyright (c) 1994, Regents of the University of California
     *
     *
     * IDENTIFICATION
     *	  src/backend/nodes/nodes.c
     *
     * HISTORY
     *	  Andrew Yu			Oct 20, 1994	file creation
     *
     *-------------------------------------------------------------------------
     */
    #include "postgres.h"
    
    #include "nodes/nodes.h"
    
    /*
     * Support for newNode() macro
     *
     * In a GCC build there is no need for the global variable newNodeMacroHolder.
     * However, we create it anyway, to support the case of a non-GCC-built
     * loadable module being loaded into a GCC-built backend.
     */
    
    Node	   *newNodeMacroHolder;