diff options
| author | Tom Lane | 2006-03-03 19:54:10 +0000 |
|---|---|---|
| committer | Tom Lane | 2006-03-03 19:54:10 +0000 |
| commit | 023570f5e3a1695cb3e906079e6b87ac3720d607 (patch) | |
| tree | a3de2a3404626713b95a541a8bd13e9d818cd178 /src/include | |
| parent | 4e086f7cb516b57624eb4b135c2539b827fb191e (diff) | |
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.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/commands/copy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/copy.h b/src/include/commands/copy.h index 7a22c5bd8d0..bd4e7812d96 100644 --- a/src/include/commands/copy.h +++ b/src/include/commands/copy.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/copy.h,v 1.25 2004/12/31 22:03:28 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/commands/copy.h,v 1.26 2006/03/03 19:54:10 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -17,6 +17,6 @@ #include "nodes/parsenodes.h" -extern void DoCopy(const CopyStmt *stmt); +extern uint64 DoCopy(const CopyStmt *stmt); #endif /* COPY_H */ |
