copy.h 638 Bytes
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * copy.h
4
 *	  Definitions for using the POSTGRES copy command.
5 6
 *
 *
7
 * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
Bruce Momjian's avatar
Add:  
Bruce Momjian committed
8
 * Portions Copyright (c) 1994, Regents of the University of California
9
 *
10
 * $Id: copy.h,v 1.13 2001/06/08 21:16:48 petere Exp $
11 12 13 14
 *
 *-------------------------------------------------------------------------
 */
#ifndef COPY_H
15
#define COPY_H
16

17
extern int	copy_lineno;
18

19
void DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
20
	   char *filename, char *delim, char *null_print);
21

22
#endif	 /* COPY_H */