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:36 +0100
commit7cfd1dd031fe3baf6a500c98b62069ce317b664f (patch)
tree27cbf39f109d2b22223d6bf98888e9b390f56020
parent139e4274263a7efa230353e7b857cfa75703044a (diff)
downloadpostgresql-7cfd1dd031fe3baf6a500c98b62069ce317b664f.tar.gz
postgresql-7cfd1dd031fe3baf6a500c98b62069ce317b664f.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 50d379489bc..8e229f87c77 100644
--- a/src/backend/executor/execReplication.c
+++ b/src/backend/executor/execReplication.c
@@ -213,11 +213,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)