-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
sql: disable arrays in forward indexes #50662
Conversation
CREATE INDEX i ON t(x DESC) | ||
|
||
# Add "t@i" index annotation once #50659 is fixed. |
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.
Can you leave a TODO and a name here?
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.
Added a TODO above.
LGTM |
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.
Reviewed 1 of 2 files at r1.
Reviewable status: complete! 1 of 0 LGTMs obtained (waiting on @mjibson, @rohany, and @sumeerbhola)
Had to track down some test flakes due to our rand table functions (including random interleaving and random FKs not using the indexable function). Fixed those and will merge once tests pass again. |
bors r+ |
Build succeeded |
@sumeerbhola @solongordon do you know exactly why we needed to do this? |
There are some open questions about inverted index types being used in
forward indexes. Disable those for now.
Fixes #50656
See #50659
See #17154
Release note (sql change): disable arrays in non-inverted indexes.