-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[YSQL] Support GIN and GIST index methods #1337
Comments
Aw, this is the one thing preventing me from committing to yugabyte |
Ran into the need for this trying to run promscale with YB (specifically the need for support for gin indexes). |
Just want to note another vote for this feature -- would be really amazing, especially when using JSONB fields to get a best-of-both-worlds SQL + NoSQL kind of system going. |
Please! This and (at least) #997 (exclusion constraint) are required for doing temporal tables sanely. For example a table to track the valid state of a user job table where you want to constrain the user to only have one job_id at any given point in time: create table temporal (
user_id text,
job_id text,
valid_time tstzrange,
exclude using gist (user_id with =, job_id with =, vaild_time with &&)
) |
Very much in need of this please. How can we get a feature prioritized here ? |
it will be a cannon. Please prioritize the task! Please. |
That's the most voted feature and a one of the blockers to use yb in the current project :( |
GIN indexes are now in-progress and tracked in: #7850 |
@m-iancu thank you very much for linking the issue! Does it make sense to rename this issue to GIST index only? |
need this in stable versions. |
Any updates to address GIST Indexes in the foreseeable future? |
Summary: There appears to be no way to click on '+' on the description, but in the reactions 👍 appears to be commonly used. Additionally use https://github.com/yugabyte/ instead of https://github.com/YugaByte/ in the links to those issues. Previously: HINT: See #1337. Click '+' on the description to raise its priority Now: HINT: See #1337. React with thumbs up to raise its priority Test Plan: Unit tests Reviewers: mihnea, dmitry, jason Reviewed By: jason Subscribers: jason, yql Differential Revision: https://phabricator.dev.yugabyte.com/D18967
…b issue Summary: There appears to be no way to click on '+' on the description, but in the reactions 👍 appears to be commonly used. Additionally use https://github.com/yugabyte/ instead of https://github.com/YugaByte/ in the links to those issues. Previously: HINT: See #1337. Click '+' on the description to raise its priority Now: HINT: See #1337. React with thumbs up to raise its priority Original commit: 4d83d04 / D18967 Test Plan: Unit tests Reviewers: mihnea, dmitry, jason Reviewed By: jason Subscribers: yql Differential Revision: https://phabricator.dev.yugabyte.com/D19118
…b issue Summary: There appears to be no way to click on '+' on the description, but in the reactions 👍 appears to be commonly used. Additionally use https://github.com/yugabyte/ instead of https://github.com/YugaByte/ in the links to those issues. Previously: HINT: See #1337. Click '+' on the description to raise its priority Now: HINT: See #1337. React with thumbs up to raise its priority Original commit: 4d83d04 / D18967 Test Plan: Unit tests Reviewers: mihnea, dmitry, jason Reviewed By: jason Subscribers: yql Differential Revision: https://phabricator.dev.yugabyte.com/D19120
… issue Summary: There appears to be no way to click on '+' on the description, but in the reactions 👍 appears to be commonly used. Additionally use https://github.com/yugabyte/ instead of https://github.com/YugaByte/ in the links to those issues. Previously: HINT: See #1337. Click '+' on the description to raise its priority Now: HINT: See #1337. React with thumbs up to raise its priority Original commit: 4d83d04 / D18967 Test Plan: Unit tests Reviewers: mihnea, dmitry, jason Reviewed By: jason Subscribers: yql Differential Revision: https://phabricator.dev.yugabyte.com/D19123
… issue Summary: There appears to be no way to click on '+' on the description, but in the reactions 👍 appears to be commonly used. Additionally use https://github.com/yugabyte/ instead of https://github.com/YugaByte/ in the links to those issues. Previously: HINT: See #1337. Click '+' on the description to raise its priority Now: HINT: See #1337. React with thumbs up to raise its priority Original commit: 4d83d04 / D18967 Test Plan: Unit tests Reviewers: mihnea, dmitry, jason Reviewed By: jason Subscribers: yql Differential Revision: https://phabricator.dev.yugabyte.com/D19122
Any updates to support GIST Indexes in the foreseeable future? |
Any updates yugabyte team? |
Must have feature. |
Hi, another ask for an update on GIST support - any ETA on that? thanks, Matt. |
Jira Link: DB-1851
YugaByte DB currently supports btree and hash index methods only. Consider supporting other index methods:
The text was updated successfully, but these errors were encountered: