8000 Fix compiler warning about uninitialized variable · postgres/postgres@0e69020 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0e69020

Browse files
committed
Fix compiler warning about uninitialized variable
1 parent 60df192 commit 0e69020

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/backend/commands/copy.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,7 @@ DoCopy(const CopyStmt *stmt, const char *queryString, uint64 *processed)
800800
{
801801
Assert(stmt->query);
802802

803+
relid = InvalidOid;
803804
rel = NULL;
804805
}
805806

0 commit comments

Comments
 (0)
0