Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c465c30

Browse files
committed
silence up compiler
1 parent ed48019 commit c465c30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pglogical_apply.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ process_remote_update(StringInfo s, Relation rel)
12481248
TupleData old_tuple;
12491249
TupleData new_tuple;
12501250
Oid idxoid = InvalidOid;
1251-
Relation idxrel;
1251+
Relation idxrel = NULL;
12521252
TupleDesc tupDesc = RelationGetDescr(rel);
12531253
ScanKeyData skey[INDEX_MAX_KEYS];
12541254
HeapTuple remote_tuple = NULL;
@@ -1369,7 +1369,7 @@ process_remote_delete(StringInfo s, Relation rel)
13691369
TupleData oldtup;
13701370
TupleTableSlot *oldslot;
13711371
Oid idxoid = InvalidOid;
1372-
Relation idxrel;
1372+
Relation idxrel = NULL;
13731373
TupleDesc tupDesc = RelationGetDescr(rel);
13741374
ScanKeyData skey[INDEX_MAX_KEYS];
13751375
bool found_old;

0 commit comments

Comments
 (0)