aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2025-03-08 08:06:30 +0100
committerPeter Eisentraut <peter@eisentraut.org>2025-03-08 08:06:30 +0100
commit661781f3a3ed37249cd468db27050ab3d4d662b7 (patch)
tree5d883acc3571b7e87b99f5050744f1657211f147 /src
parent21f653cc0024100f8ecc279162631f2b1ba8c46c (diff)
downloadpostgresql-661781f3a3ed37249cd468db27050ab3d4d662b7.tar.gz
postgresql-661781f3a3ed37249cd468db27050ab3d4d662b7.zip
Fix typo
Duplicate assignment in commit af4002b381d should have been a different field. (But it didn't affect the outcome.) Reported-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://www.postgresql.org/message-id/flat/E1tngY6-0000UL-2n%40gemulon.postgresql.org
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/hash/hash.c2
1 files changed, 1 insertions, 1 deletions
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;