Skip to content

Commit

Permalink
mild fix for adding & dropping partitions in table managed partitions
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Jan 14, 2025
1 parent 1f80a92 commit 8e85655
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@ private async Task<List<TablePartitionStatus>> additivelyMigrateTablesForNewPart
list.Add(new TablePartitionStatus(table.Identifier, PartitionMigrationStatus.Failed));
}
}
else if (delta.PartitionDelta == PartitionDelta.None)
{
list.Add(new TablePartitionStatus(table.Identifier, PartitionMigrationStatus.Complete));
}
else
{
list.Add(new TablePartitionStatus(table.Identifier, PartitionMigrationStatus.RequiresTableRebuild));
Expand Down

0 comments on commit 8e85655

Please sign in to comment.