|
4 | 4 | * contains dispatch functions which call the appropriate "initialize",
|
5 | 5 | * "get a tuple", and "cleanup" routines for the given node type.
|
6 | 6 | * If the node has children, then it will presumably call ExecInitNode,
|
7 |
| - * ExecProcNode, or ExecEndNode onit's subnodes and do the appropriate |
| 7 | + * ExecProcNode, or ExecEndNode onits subnodes and do the appropriate |
8 | 8 | * processing..
|
9 | 9 | *
|
10 | 10 | * Copyright (c) 1994, Regents of the University of California
|
11 | 11 | *
|
12 | 12 | *
|
13 | 13 | * IDENTIFICATION
|
14 |
| - * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.16 1999/11/23 20:06:51 momjian Exp $ |
| 14 | + * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.17 2000/01/05 18:23:46 momjian Exp $ |
15 | 15 | *
|
16 | 16 | *-------------------------------------------------------------------------
|
17 | 17 | */
|
18 | 18 | /*
|
19 | 19 | * INTERFACE ROUTINES
|
20 |
| - *ExecInitNode-initialize a plan node andit's subplans |
| 20 | + *ExecInitNode-initialize a plan node andits subplans |
21 | 21 | *ExecProcNode-get a tuple by executing the plan node
|
22 |
| - *ExecEndNode-shut down a plan node andit's subplans |
| 22 | + *ExecEndNode-shut down a plan node andits subplans |
23 | 23 | *
|
24 | 24 | * NOTES
|
25 | 25 | *This used to be three files. It is now all combined into
|
|