diff options
| author | Peter Eisentraut <peter@eisentraut.org> | 2021-03-10 08:16:38 +0100 |
|---|---|---|
| committer | Peter Eisentraut <peter@eisentraut.org> | 2021-03-10 08:16:38 +0100 |
| commit | 1657b37d7cce5c35e4c1d500f0a2f3736a087d82 (patch) | |
| tree | 30f2ebee752f045022aea6c07778bff54e77c048 | |
| parent | 6c788d9f6aadb41d76a72d56149268371a7895ee (diff) | |
Small debug message tweak
This makes the wording of the delete case match the update case.
| -rw-r--r-- | src/backend/replication/logical/worker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/worker.c b/src/backend/replication/logical/worker.c index 18d05286b65..21d304a64c3 100644 --- a/src/backend/replication/logical/worker.c +++ b/src/backend/replication/logical/worker.c @@ -1514,7 +1514,7 @@ apply_handle_delete_internal(ResultRelInfo *relinfo, EState *estate, { /* The tuple to be deleted could not be found. */ elog(DEBUG1, - "logical replication could not find row for delete " + "logical replication did not find row for delete " "in replication target relation \"%s\"", RelationGetRelationName(localrel)); } |
