Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / include / commands / copy.h
blob4f154b8fe596cc5989e4c49f7e8baa5a3f6fd521
1 /*-------------------------------------------------------------------------
3 * copy.h
4 * Definitions for using the POSTGRES copy command.
7 * Portions Copyright (c) 1996-2008, 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 */