diff options
Diffstat (limited to 'src/bin/psql/copy.h')
-rw-r--r-- | src/bin/psql/copy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/copy.h b/src/bin/psql/copy.h index 689cd8f49c3..7e0c5e0d838 100644 --- a/src/bin/psql/copy.h +++ b/src/bin/psql/copy.h @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2006, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/copy.h,v 1.18 2006/03/05 15:58:51 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/copy.h,v 1.19 2006/05/26 19:51:29 tgl Exp $ */ #ifndef COPY_H #define COPY_H @@ -17,6 +17,6 @@ bool do_copy(const char *args); /* lower level processors for copy in/out streams */ bool handleCopyOut(PGconn *conn, FILE *copystream); -bool handleCopyIn(PGconn *conn, FILE *copystream); +bool handleCopyIn(PGconn *conn, FILE *copystream, bool isbinary); #endif |