mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-20 05:17:00 +08:00
21 lines
517 B
C
21 lines
517 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* copy.h--
|
|
* Definitions for using the POSTGRES copy command.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: copy.h,v 1.2 1996/10/31 09:48:12 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef COPY_H
|
|
#define COPY_H
|
|
|
|
|
|
void DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe, char *filename,
|
|
char *delim);
|
|
|
|
#endif /* COPY_H */
|