diff options
| author | Peter Eisentraut | 2025-03-07 09:51:53 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2025-03-07 10:46:33 +0000 |
| commit | af4002b381d86df6479962953d82f03ecb4e2e06 (patch) | |
| tree | 70b568724f3dff02edcb4f6d3e87fa5711d59bb5 /contrib | |
| parent | 6da469badaffec32f8a804181cca279561467378 (diff) | |
Rename amcancrosscompare
After more discussion about commit ce62f2f2a0a, rename the index AM
property amcancrosscompare to two separate properties
amconsistentequality and amconsistentordering. Also improve the
documentation and update some comments that were previously missed.
Reported-by: Tom Lane <[email protected]>
Discussion: https://www.postgresql.org/message-id/flat/E1tngY6-0000UL-2n%40gemulon.postgresql.org
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/bloom/blutils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/bloom/blutils.c b/contrib/bloom/blutils.c index c901e942720..2c0e71eedc6 100644 --- a/contrib/bloom/blutils.c +++ b/contrib/bloom/blutils.c @@ -110,7 +110,8 @@ blhandler(PG_FUNCTION_ARGS) amroutine->amcanorder = false; amroutine->amcanorderbyop = false; amroutine->amcanhash = false; - amroutine->amcancrosscompare = false; + amroutine->amconsistentequality = false; + amroutine->amconsistentordering = false; amroutine->amcanbackward = false; amroutine->amcanunique = false; amroutine->amcanmulticol = true; |
