diff options
author | Peter Eisentraut | 2024-01-25 06:25:10 +0000 |
---|---|---|
committer | Peter Eisentraut | 2024-01-25 06:25:10 +0000 |
commit | 86232a49a4373013056e8d38118339b8e7675ea0 (patch) | |
tree | 65454e56a7dac45c58b7056fb9bff37b3c46da4e | |
parent | a044e61f1b97ceb80a198c0ae22c07c35dda39eb (diff) |
Fix comment on gist_stratnum_btree
We give results for <, <=, =, >=, and >, not just =. Because why not?
Author: Paul A. Jungwirth <[email protected]>
Discussion: https://www.postgresql.org/message-id/flat/CA+renyUApHgSZF9-nd-a0+OPGharLQLO=mDHcY4_qQ0+noCUVg@mail.gmail.com
-rw-r--r-- | contrib/btree_gist/btree_gist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/btree_gist/btree_gist.c b/contrib/btree_gist/btree_gist.c index c4fc094c652..5fd4cce27d0 100644 --- a/contrib/btree_gist/btree_gist.c +++ b/contrib/btree_gist/btree_gist.c @@ -55,7 +55,7 @@ gbt_decompress(PG_FUNCTION_ARGS) } /* - * Returns the btree number for equals, otherwise invalid. + * Returns the btree number for supported operators, otherwise invalid. */ Datum gist_stratnum_btree(PG_FUNCTION_ARGS) |