[Spark] Support type widening during schema evolution in the DSv2 write path#7074
Open
johanl-db wants to merge 1 commit into
Open
[Spark] Support type widening during schema evolution in the DSv2 write path#7074johanl-db wants to merge 1 commit into
johanl-db wants to merge 1 commit into
Conversation
457ae35 to
63ccd2d
Compare
63ccd2d to
b9f4362
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Support changing column data types during write operations that use the DSv2 code path. With DSv2, Spark is responsible for schema evolution (see the
ResolveSchemaEvolutionrule), and the connector indicates whether a given column change is supported by implementingSupportsSchemaEvolution.Changes:
SupportsSchemaEvolutionfor the Delta DSv2 table (DeltaV2Table). Type changes are accepted when type widening is enabled on the table and no condition prevents changing the column's data type: the column must not be referenced in a generated column expression or a CHECK constraint.ALTER TABLE, which is not yet supported on the DSv2 path.ResolveSchemaEvolutioncalls intoalterTable()to apply changes.How was this patch tested?
Added DSv2 variants of the type widening suites covering schema evolution.