|
|
@ -7,7 +7,7 @@ |
|
|
|
* |
|
|
|
* |
|
|
|
* |
|
|
|
* |
|
|
|
* IDENTIFICATION |
|
|
|
* IDENTIFICATION |
|
|
|
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.4 1996/11/03 23:57:21 scrappy Exp $ |
|
|
|
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.5 1996/11/06 08:21:30 scrappy Exp $ |
|
|
|
* |
|
|
|
* |
|
|
|
* NOTES |
|
|
|
* NOTES |
|
|
|
* The PortalExecutorHeapMemory crap needs to be eliminated |
|
|
|
* The PortalExecutorHeapMemory crap needs to be eliminated |
|
|
@ -20,53 +20,25 @@ |
|
|
|
*
|
|
|
|
*
|
|
|
|
*------------------------------------------------------------------------- |
|
|
|
*------------------------------------------------------------------------- |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
#include "postgres.h" |
|
|
|
#include <postgres.h> |
|
|
|
|
|
|
|
|
|
|
|
#include "access/relscan.h" |
|
|
|
#include <access/relscan.h> |
|
|
|
|
|
|
|
#include <utils/portal.h> |
|
|
|
#include "nodes/memnodes.h" |
|
|
|
#include <commands/command.h> |
|
|
|
#include "nodes/parsenodes.h" |
|
|
|
#include <utils/mcxt.h> |
|
|
|
#include "nodes/params.h" |
|
|
|
#include <executor/executor.h> |
|
|
|
#include "access/sdir.h" |
|
|
|
#include <executor/execdefs.h> |
|
|
|
#include "executor/hashjoin.h" |
|
|
|
#include <catalog/indexing.h> |
|
|
|
#include "executor/tuptable.h" |
|
|
|
#include <utils/syscache.h> |
|
|
|
#include "access/funcindex.h" |
|
|
|
#include <catalog/catalog.h> |
|
|
|
#include "nodes/execnodes.h" |
|
|
|
#include <access/heapam.h> |
|
|
|
#include "nodes/plannodes.h" |
|
|
|
#include <utils/array.h> |
|
|
|
#include "tcop/dest.h" |
|
|
|
#include <utils/acl.h> |
|
|
|
#include "executor/execdesc.h" |
|
|
|
#include <optimizer/prep.h> |
|
|
|
#include "utils/portal.h" |
|
|
|
#include <catalog/catname.h> |
|
|
|
|
|
|
|
#include <catalog/pg_proc.h> |
|
|
|
#include "commands/command.h" |
|
|
|
#include <catalog/pg_type.h> |
|
|
|
|
|
|
|
#include <utils/builtins.h> |
|
|
|
#include "utils/mcxt.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "executor/executor.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "executor/execdefs.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "catalog/indexing.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "utils/syscache.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "catalog/catalog.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "access/heapam.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "utils/array.h" |
|
|
|
|
|
|
|
#include "utils/acl.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "optimizer/prep.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "catalog/catname.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "catalog/pg_proc.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "utils/palloc.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "catalog/pg_type.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "utils/builtins.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ----------------
|
|
|
|
/* ----------------
|
|
|
|
* PortalExecutorHeapMemory stuff |
|
|
|
* PortalExecutorHeapMemory stuff |
|
|
|