1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-12 02:37:31 +03:00

Support binary COPY through psql. Also improve detection of write errors

during COPY OUT.  Andreas Pflug, some editorialization by moi.
This commit is contained in:
Tom Lane
2006-05-26 19:51:29 +00:00
parent aadd8a23ce
commit 223ae6957f
4 changed files with 100 additions and 57 deletions

View File

@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.117 2006/05/11 19:15:35 tgl Exp $
* $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.118 2006/05/26 19:51:29 tgl Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@@ -652,7 +652,8 @@ ProcessCopyResult(PGresult *results)
break;
case PGRES_COPY_IN:
success = handleCopyIn(pset.db, pset.cur_cmd_source);
success = handleCopyIn(pset.db, pset.cur_cmd_source,
PQbinaryTuples(results));
break;
default: