-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sql: fix bug in column backfill with virtual columns
Prior to this change we'd inform the column backfiller that it needed to read the virtual columns. These virtual columns don't exist and thus won't be read. If the columns are marked as NOT NULL, then an assertion will fire from inside the row fetcher. This PR fixes the bug by not requesting the virtual columns. Fixes #65915. Release note (bug fix): Fixed a bug which prevented adding columns to tables which contain data and use NOT NULL virtual columns
- Loading branch information
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters