Fix typo in logical truncate replication

This could result in some misbehavior in a cascading replication setup.
This commit is contained in:
Peter Eisentraut 2018-04-23 13:38:22 -04:00
parent 56fb890ace
commit df044026fc
1 changed files with 1 additions and 1 deletions

View File

@ -932,7 +932,7 @@ apply_handle_truncate(StringInfo s)
rels = lappend(rels, rel->localrel);
relids = lappend_oid(relids, rel->localreloid);
if (RelationIsLogicallyLogged(rel->localrel))
relids_logged = lappend_oid(relids, rel->localreloid);
relids_logged = lappend_oid(relids_logged, rel->localreloid);
}
/*