diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-16 05:00:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-16 05:00:38 +0000 |
commit | a71802e12ec04fed791ea47f24ea30e0f5d9f5c2 (patch) | |
tree | 80d29372e0bbdd85bc4938ec048fa565c98eac12 /src/backend/executor/execProcnode.c | |
parent | 9b645d481ccfa3638de915e0f75e3dfe9d520b79 (diff) | |
download | postgresql-a71802e12ec04fed791ea47f24ea30e0f5d9f5c2.tar.gz postgresql-a71802e12ec04fed791ea47f24ea30e0f5d9f5c2.zip |
Final cleanup.
Diffstat (limited to 'src/backend/executor/execProcnode.c')
-rw-r--r-- | src/backend/executor/execProcnode.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c index 1b693cbcaf1..1b6d2bd8421 100644 --- a/src/backend/executor/execProcnode.c +++ b/src/backend/executor/execProcnode.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.14 1999/03/23 16:50:48 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.15 1999/07/16 04:58:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -74,23 +74,23 @@ */ #include "postgres.h" -#include "miscadmin.h" -#include "tcop/tcopprot.h" #include "executor/executor.h" -#include "executor/nodeResult.h" +#include "executor/nodeAgg.h" #include "executor/nodeAppend.h" -#include "executor/nodeSeqscan.h" -#include "executor/nodeIndexscan.h" -#include "executor/nodeNestloop.h" -#include "executor/nodeMergejoin.h" -#include "executor/nodeMaterial.h" -#include "executor/nodeSort.h" -#include "executor/nodeUnique.h" #include "executor/nodeGroup.h" -#include "executor/nodeAgg.h" #include "executor/nodeHash.h" #include "executor/nodeHashjoin.h" +#include "executor/nodeIndexscan.h" +#include "executor/nodeMaterial.h" +#include "executor/nodeMergejoin.h" +#include "executor/nodeNestloop.h" +#include "executor/nodeResult.h" +#include "executor/nodeSeqscan.h" +#include "executor/nodeSort.h" #include "executor/nodeSubplan.h" +#include "executor/nodeUnique.h" +#include "miscadmin.h" +#include "tcop/tcopprot.h" /* ------------------------------------------------------------------------ * ExecInitNode |