Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
50665: sql: remove sequence ownership dependency when dropping sequences r=solongordon a=arulajmani Previously, when a sequence that was owned by a column was being dropped, we would not remove the sequence ID from the column descriptor of the column that owned it. As a result, there was a bug where if the sequence was dropped manually before the table, it would be impossible to drop the table. This patch addresses this problem by removing the ownership dependency on sequence drops. Fixes #50649 Release note (bug fix): there was a bug previously where if a user created a sequence owned by a table's column and dropped the sequence, it would become impossible to drop the table after. This is now fixed. See attached issue for repro steps. Co-authored-by: arulajmani <[email protected]>
- Loading branch information