Small debug message tweak
authorPeter Eisentraut <peter@eisentraut.org>
Wed, 10 Mar 2021 07:16:38 +0000 (08:16 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Wed, 10 Mar 2021 07:16:38 +0000 (08:16 +0100)
This makes the wording of the delete case match the update case.

src/backend/replication/logical/worker.c

index 18d05286b657c067d3ef6e3544c43955c118db43..21d304a64c3b1fc5babfe9316178a6e3aae1d447 100644 (file)
@@ -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));
    }