mirror of
https://github.com/postgres/postgres.git
synced 2025-06-01 00:01:20 -04:00
Fix typo in logical truncate replication
This could result in some misbehavior in a cascading replication setup.
This commit is contained in:
parent
56fb890ace
commit
df044026fc
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user