From 661781f3a3ed37249cd468db27050ab3d4d662b7 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sat, 8 Mar 2025 08:06:30 +0100 Subject: [PATCH] Fix typo Duplicate assignment in commit af4002b381d should have been a different field. (But it didn't affect the outcome.) Reported-by: Tom Lane Discussion: https://www.postgresql.org/message-id/flat/E1tngY6-0000UL-2n%40gemulon.postgresql.org --- src/backend/access/hash/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/access/hash/hash.c b/src/backend/access/hash/hash.c index 874558849a2..53061c819fb 100644 --- a/src/backend/access/hash/hash.c +++ b/src/backend/access/hash/hash.c @@ -66,7 +66,7 @@ hashhandler(PG_FUNCTION_ARGS) amroutine->amcanorderbyop = false; amroutine->amcanhash = true; amroutine->amconsistentequality = true; - amroutine->amconsistentequality = false; + amroutine->amconsistentordering = false; amroutine->amcanbackward = true; amroutine->amcanunique = false; amroutine->amcanmulticol = false; -- 2.39.5