Open logston opened 4 years ago
Hello, I am Blathers. I am here to help you get the issue triaged.
I have CC'd a few people who may be able to assist you:
If we have not gotten back to your issue within a few business days, you can try the following:
:owl: Hoot! I am a Blathers, a bot for CockroachDB. My owner is otan.
Can anybody say more about what value there'd be in adding this extension? We do support inverted indexes. My reading of the docs is that this extension is largely for testing inverted indexes.
Can anybody say more about what value there'd be in adding this extension? We do support inverted indexes. My reading of the docs is that this extension is largely for testing inverted indexes.
We use btree_gin
to support multi-column indexes, exactly in the pattern this blog post outlines:
https://pganalyze.com/blog/gin-index#multi-column-gin-indexes-and-combining-gin-and-b-tree-indexes
CREATE INDEX ON records USING gin (data, customer_id);
Basically we have a tenant/account/customer id which we include in every query, and we also have a JSONB or tsvector we're doing operations against.
@ajwerner any update on this, does cockroach db support this extension now ?
Is your feature request related to a problem? Please describe. It would be great to have support for the btree_gin extension.
Describe the solution you'd like Ability to enable the same behavior that is available in PostgreSQL under the extension of the same name.
Describe alternatives you've considered None at the moment. I'm simply showing interest in having this feature available.
Additional context
Jira issue: CRDB-3993