mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Fix typo
Duplicate assignment in commit af4002b381
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
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user