-
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.
69674: importccl: fail IMPORT INTO on concurrent type change r=arulajmani,dt a=adityamaru This change adds logic to check that the type descriptors referenced by the table being imported into have not undergone any changes (adding/dropping values) during the the course of the import job execution. This is done by matching the current type desc version against the version on the type desc that was cached in the import job during planning. If there is a mismatch, we should fail the job since the data could be referencing a value that has been dropped, leading to corrupt kv entries. Informs: #61133 Release note (bug fix): add protection to import into to guard against concurrent type changes on UDTs referenced by the target table. Release justification: fixes for high-priority or high-severity bugs in existing functionality 69881: Add Stephanie Bodoff to AUTHORS r=jlinder a=stbof Release note: None 69910: authors: add jameswsj10 to authors r=jameswsj10 a=jameswsj10 Release justification: non-production change Release note: None 69922: jobs,schedule: Annotate context with schedule ID. r=miretskiy a=miretskiy Annotate context passed to job execution with the schedule ID. Release Justification: Low danger, observability imporovement; category 4. Release Notes: None Co-authored-by: Aditya Maru <[email protected]> Co-authored-by: Stephanie Bodoff <[email protected]> Co-authored-by: jameswsj10 <[email protected]> Co-authored-by: Yevgeniy Miretskiy <[email protected]>
- Loading branch information
Showing
7 changed files
with
915 additions
and
445 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -177,6 +177,7 @@ Ivan Kozik <[email protected]> | |
Jaewan Park <[email protected]> | ||
Jackson Owens <[email protected]> <[email protected]> | ||
James Graves <[email protected]> | ||
James Jung <[email protected]> <[email protected]> | ||
James H. Linder <[email protected]> | ||
Jan Owsiany <[email protected]> | ||
Jane Xing <[email protected]> <[email protected]> | ||
|
@@ -357,6 +358,7 @@ Solon Gordon <[email protected]> solongordon <[email protected]> | |
Song Hao <[email protected]> songhao <[email protected]> | ||
Spas Bojanov <[email protected]> <[email protected]> | ||
Spencer Kimball <[email protected]> <[email protected]> | ||
Stephanie Bodoff <[email protected]> | ||
Stephen Mooney <[email protected]> <[email protected]> | ||
Steven Danna <[email protected]> | ||
Steven Hand <@cockroachlabs.com> hand <@cockroachlabs.com> hand-crdb <@cockroachlabs.com> | ||
|
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
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
Oops, something went wrong.