projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62c7bd3
)
Fix an uninitialized field in DR_copy.
author
Itagaki Takahiro
Fri, 18 Feb 2011 05:29:40 +0000
(14:29 +0900)
committer
Itagaki Takahiro
Fri, 18 Feb 2011 05:32:19 +0000
(14:32 +0900)
Shigeru HANADA
src/backend/commands/copy.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/commands/copy.c
b/src/backend/commands/copy.c
index 9f7263d59a54107afdf0fd44a79154e32225ad2c..2c06d80951d68094c68b0bcf59f20768886a90aa 100644
(file)
--- a/
src/backend/commands/copy.c
+++ b/
src/backend/commands/copy.c
@@
-3798,6
+3798,7
@@
CreateCopyDestReceiver(void)
self->pub.mydest = DestCopyOut;
self->cstate = NULL; /* will be set later */
+ self->processed = 0;
return (DestReceiver *) self;
}