aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-01-19 09:34:24 +0100
committerPeter Eisentraut <peter@eisentraut.org>2019-01-19 09:36:32 +0100
commit5279c8d097a1346e3dddbed7c0002c735aa23f73 (patch)
tree8798438f6eedf190235b39e51e7e714d4871edcb
parente14536f79ea7ab70f0566b2e85c164af6a333829 (diff)
downloadpostgresql-5279c8d097a1346e3dddbed7c0002c735aa23f73.tar.gz
postgresql-5279c8d097a1346e3dddbed7c0002c735aa23f73.zip
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 9a7dedf5aa2..bef40b30c9e 100644
--- a/src/backend/executor/execReplication.c
+++ b/src/backend/executor/execReplication.c
@@ -219,11 +219,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)