-
Notifications
You must be signed in to change notification settings - Fork 235
feat(collections): Highlight clustered collections index type COMPASS-5666 #3013
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
Conversation
<FieldSet> | ||
<TextInput | ||
name="clustered.name" | ||
name="clusteredIndex.name" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug found while writing the e2e test..
GEOSPATIAL: | ||
'https://docs.mongodb.org/manual/applications/geospatial-indexes/#geospatial-indexes', | ||
WILDCARD: 'https://docs.mongodb.com/manual/core/index-wildcard/', | ||
// TODO: add an entry for CLUSTERED once the docs become available |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A similar comment to the one in the first pr - #2966 (comment)
Do we have a ticket name we can attach to this comment? I find it can help give context quickly when looking through code (and then if we somehow miss updating this todo we know way down the line it can be quickly updated).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://jira.mongodb.org/browse/COMPASS-5760
And I linked to it from both places
packages/index-model/lib/model.js
Outdated
} | ||
}, | ||
type: { | ||
deps: ['geo', 'hashed', 'text', 'wildcard'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should clustered
also be in this list? I might be misunderstanding how these are used in ampersand.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably. Added.
Follow-up from #2966