home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / executor / pre_nestdots.c < prev   
Encoding:
C/C++ Source or Header  |  1992-08-27  |  731 b   |  35 lines

  1. /* ----------------------------------------------------------------
  2.  *   FILE
  3.  *    pre_nestdots.c
  4.  *
  5.  *   DESCRIPTION
  6.  *    this contains the preprocessing code to expand nested
  7.  *    dot expressions from query plans.
  8.  *
  9.  *   INTERFACE ROUTINES
  10.  *    ReplaceNestedDots()
  11.  *
  12.  *   IDENTIFICATION
  13.  *    $Header: /private/postgres/src/executor/RCS/pre_nestdots.c,v 1.2 1991/11/14 11:07:27 glass Exp $
  14.  * ----------------------------------------------------------------
  15.  */
  16.  
  17. #include "executor/executor.h"
  18.  
  19. /* ----------------
  20.  *    ReplaceNestedDots
  21.  * ----------------
  22.  */
  23. void
  24. ReplaceNestedDots(parseTree, planP)
  25.     List    parseTree;
  26.     Plan    *planP;
  27. {
  28.     Plan    originalPlan;
  29.     Plan    newPlan;
  30.  
  31.     originalPlan = (*planP);
  32.  
  33.     (*planP) = newPlan;
  34. }
  35.