Skip to content

Commit

Permalink
review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tedyu committed Sep 17, 2024
1 parent 72b9f2d commit c5d7d6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class StateSchemaCompatibilityChecker(
val colFamiliesAddedOrRemoved =
(newStateSchemaList.map(_.colFamilyName).toSet != existingSchemaMap.keySet)
if (stateSchemaVersion == SCHEMA_FORMAT_V3 && colFamiliesAddedOrRemoved) {
createSchemaFile(newStateSchemaList, stateSchemaVersion)
createSchemaFile(newStateSchemaList.sortBy(_.colFamilyName), stateSchemaVersion)
}
// TODO: [SPARK-49535] Write Schema files after schema has changed for StateSchemaV3
colFamiliesAddedOrRemoved
Expand Down

0 comments on commit c5d7d6d

Please sign in to comment.