1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Make the COPY command return a command tag that includes the number of

rows copied.  Backend side of Volkan Yazici's recent patch, with
corrections and documentation.
This commit is contained in:
Tom Lane
2006-03-03 19:54:10 +00:00
parent 4e086f7cb5
commit 023570f5e3
5 changed files with 55 additions and 10 deletions

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.253 2006/03/03 03:30:53 tgl Exp $
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.254 2006/03/03 19:54:10 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -636,7 +636,13 @@ ProcessUtility(Node *parsetree,
break;
case T_CopyStmt:
DoCopy((CopyStmt *) parsetree);
{
uint64 processed = DoCopy((CopyStmt *) parsetree);
if (completionTag)
snprintf(completionTag, COMPLETION_TAG_BUFSIZE,
"COPY " UINT64_FORMAT, processed);
}
break;
case T_PrepareStmt: