Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / commands / copy.h
blob7c919b037fcc86de395cc442d81ce3d30b73fee4
1 /*-------------------------------------------------------------------------
3 * copy.h
4 * Definitions for using the POSTGRES copy command.
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef COPY_H
15 #define COPY_H
17 #include "nodes/parsenodes.h"
18 #include "tcop/dest.h"
21 extern uint64 DoCopy(const CopyStmt *stmt, const char *queryString);
23 extern DestReceiver *CreateCopyDestReceiver(void);
25 #endif /* COPY_H */