Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5d099f commit 8a07ebbCopy full SHA for 8a07ebb
src/backend/replication/logical/worker.c
@@ -869,10 +869,10 @@ apply_handle_delete(StringInfo s)
869
else
870
{
871
/* The tuple to be deleted could not be found. */
872
- ereport(DEBUG1,
873
- (errmsg("logical replication could not find row for delete "
874
- "in replication target relation \"%s\"",
875
- RelationGetRelationName(rel->localrel))));
+ elog(DEBUG1,
+ "logical replication could not find row for delete "
+ "in replication target relation \"%s\"",
+ RelationGetRelationName(rel->localrel));
876
}
877
878
/* Cleanup. */
0 commit comments