diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-01-19 09:34:24 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-01-19 09:34:24 +0100 |
commit | 3bed67bed171701e86417ec5a201e2f2e82356fb (patch) | |
tree | cf0d2f768a3aff60a1f87c78e2bbb0e6463be7fb /src/backend/executor/execReplication.c | |
parent | 458a1244f1fcf407874482a93b7631ecf5303d6e (diff) | |
download | postgresql-3bed67bed171701e86417ec5a201e2f2e82356fb.tar.gz postgresql-3bed67bed171701e86417ec5a201e2f2e82356fb.zip |
Fix outdated comment
The issue the comment is referring to was fixed by
08859bb5c2cebc132629ca838113d27bb31b990c.
Diffstat (limited to 'src/backend/executor/execReplication.c')
-rw-r--r-- | src/backend/executor/execReplication.c | 5 |
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) |