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

sql: resolve error due to drop table after schema change in same txn #56589

Merged

Commits on Nov 12, 2020

  1. sql: resolve error due to drop table after schema change in same txn

    Previously, if a drop table statement was executed in a transaction
    following other schema changes to the table in the same transaction,
    an error would occur. This error was due to the drop table statement
    marking previous jobs as succeeded and then proceeding to modify them.
    This change ensures that drop table statement will delete all existing
    jobs from the job cache so that it does not interfere with previous jobs.
    
    Release note (sql change): A table can successfully be dropped in
    a transaction following other schema changes to the table in the
    same transaction.
    jayshrivastava committed Nov 12, 2020
    Copy the full SHA
    7039ad8 View commit details
    Browse the repository at this point in the history