Skip to content
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

release-20.2: sql: fix DROP COLUMN bug which ignores containing indexes #54262

Merged
merged 1 commit into from
Sep 14, 2020

Commits on Sep 11, 2020

  1. sql: fix DROP COLUMN bug which ignores containing indexes

    AllNonDropIndexes returns an array of pointers to index descriptors.
    After deleting one of the indexes, the array of pointers point
    to a different element. This ends up accidentally missing some
    indexes that require deletion.
    
    Release note (bug fix): Fixed a bug introduced in earlier v20.2 versions
    where when attempting to drop a column which is referenced by multiple
    indexes fails to drop all relevant indexes.
    otan committed Sep 11, 2020
    Configuration menu
    Copy the full SHA
    5346cd6 View commit details
    Browse the repository at this point in the history