2 * psql - the PostgreSQL interactive terminal
4 * Copyright (c) 2000-2008, PostgreSQL Global Development Group
14 /* handler for \copy */
15 bool do_copy(const char *args
);
17 /* lower level processors for copy in/out streams */
19 bool handleCopyOut(PGconn
*conn
, FILE *copystream
);
20 bool handleCopyIn(PGconn
*conn
, FILE *copystream
, bool isbinary
);