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

Fix compiler warning about uninitialized variable

This commit is contained in:
Peter Eisentraut
2012-12-31 00:13:40 -05:00
parent 60df192aea
commit 0e690209ee

View File

@ -800,6 +800,7 @@ DoCopy(const CopyStmt *stmt, const char *queryString, uint64 *processed)
{
Assert(stmt->query);
relid = InvalidOid;
rel = NULL;
}