summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2019-01-19 08:34:24 +0000
committerPeter Eisentraut2019-01-19 08:34:24 +0000
commit3bed67bed171701e86417ec5a201e2f2e82356fb (patch)
treecf0d2f768a3aff60a1f87c78e2bbb0e6463be7fb
parent458a1244f1fcf407874482a93b7631ecf5303d6e (diff)
Fix outdated comment
The issue the comment is referring to was fixed by 08859bb5c2cebc132629ca838113d27bb31b990c.
-rw-r--r--src/backend/executor/execReplication.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/backend/executor/execReplication.c b/src/backend/executor/execReplication.c
index 6ffe921f28f..a3d84f61468 100644
--- a/src/backend/executor/execReplication.c
+++ b/src/backend/executor/execReplication.c
@@ -224,11 +224,6 @@ retry:
/*
* Compare the tuple and slot and check if they have equal values.
- *
- * We use binary datum comparison which might return false negatives but
- * that's the best we can do here as there may be multiple notions of
- * equality for the data types and table columns don't specify which one
- * to use.
*/
static bool
tuple_equals_slot(TupleDesc desc, HeapTuple tup, TupleTableSlot *slot)