We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since v0.10, the INVERTED INDEX constraint can be used to specify the columns that need the inverted index
INVERTED INDEX
See https://docs.greptime.com/reference/sql/create/#inverted-index
But we are unable to add or remove a column from INVERTED INDEX.
For example:
-- add load_15 to inverted indexes-- ALTER TABLE monitor MODIFY COLUMN load_15 SET INVERTED INDEX; -- remove load_15 from inverted indexes-- ALTER TABLE monitor MODIFY COLUMN load_15 UNSET INVERTED INDEX;
As the above said.
No response
The text was updated successfully, but these errors were encountered:
can i take this issue? is the implementation similar to alter table column with fulltext option like 4952?
Sorry, something went wrong.
can i take this issue? is the implementation similar to alter table column with fulltext option like #4952?
Sure :) It's quite similar. BTW, I‘d like to recommend unifying related structs like:
SetIndex { FULLTEXT, INVERTED, }
which is better for further extenstions.
I believe we need to add to proto for AlterTableExpr as a prerequisite before working on this one. Can i get a review with this pr? https://github.com/GreptimeTeam/greptime-proto/pull/204/files
I believe we need to add to proto for AlterTableExpr as a prerequisite before working on this one. Can i get a review with this pr?
We can first use the commit hash in GreptimeTeam/greptime-proto#204, and merge it after the pr in greptimedb is ready for merge.
lyang24
No branches or pull requests
What problem does the new feature solve?
Since v0.10, the
INVERTED INDEX
constraint can be used to specify the columns that need the inverted indexSee https://docs.greptime.com/reference/sql/create/#inverted-index
But we are unable to add or remove a column from
INVERTED INDEX
.For example:
What does the feature do?
As the above said.
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: