diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-30 23:34:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-30 23:34:22 +0000 |
commit | 85188ab8838bf19cdf12298e1b6c29e12f9b9a3c (patch) | |
tree | 285f4ee5fe8c623b8eea4caa5a664aeffd3fe96a /src/include/commands/copy.h | |
parent | 0d5065781dd1486d57357c49384a034b45bb027a (diff) |
Extend COPY to support COPY (SELECT ...) TO ...
Bernd Helmle
Diffstat (limited to 'src/include/commands/copy.h')
-rw-r--r-- | src/include/commands/copy.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/commands/copy.h b/src/include/commands/copy.h index 60ddd8c92c2..ec328576c3f 100644 --- a/src/include/commands/copy.h +++ b/src/include/commands/copy.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/copy.h,v 1.27 2006/03/05 15:58:55 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/copy.h,v 1.28 2006/08/30 23:34:22 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -15,8 +15,11 @@ #define COPY_H #include "nodes/parsenodes.h" +#include "tcop/dest.h" extern uint64 DoCopy(const CopyStmt *stmt); +extern DestReceiver *CreateCopyDestReceiver(void); + #endif /* COPY_H */ |