Commit 3154e8c 1 parent 4a0ae22 commit 3154e8c Copy full SHA for 3154e8c
File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -359,6 +359,9 @@ class RemovePartitionStatisticsUpdate(BaseUpdate):
359
359
action : Literal ['remove-partition-statistics' ]
360
360
snapshot_id : int = Field (..., alias = 'snapshot-id' )
361
361
362
+ class RemovePartitionSpecsUpdate (BaseUpdate ):
363
+ action : Literal ['remove-partition-specs' ]
364
+ spec_ids : int = List [int ]
362
365
363
366
class AssertCreate (BaseModel ):
364
367
"""
Original file line number Diff line number Diff line change @@ -2265,6 +2265,7 @@ components:
2265
2265
remove-statistics : ' #/components/schemas/RemoveStatisticsUpdate'
2266
2266
set-partition-statistics : ' #/components/schemas/SetPartitionStatisticsUpdate'
2267
2267
remove-partition-statistics : ' #/components/schemas/RemovePartitionStatisticsUpdate'
2268
+ remove-partition-specs : ' #/components/schemas/RemovePartitionSpecsUpdate'
2268
2269
type : object
2269
2270
required :
2270
2271
- action
@@ -2567,6 +2568,21 @@ components:
2567
2568
type : integer
2568
2569
format : int64
2569
2570
2571
+ RemovePartitionSpecsUpdate :
2572
+ allOf :
2573
+ - $ref : ' #/components/schemas/BaseUpdate'
2574
+ required :
2575
+ - spec-ids
2576
+ properties :
2577
+ action :
2578
+ type : string
2579
+ enum : [ "remove-partition-specs" ]
2580
+ removals :
2581
+ type : array
2582
+ items :
2583
+ type : integer
2584
+ format : int64
2585
+
2570
2586
TableUpdate :
2571
2587
anyOf :
2572
2588
- $ref : ' #/components/schemas/AssignUUIDUpdate'
@@ -2586,6 +2602,7 @@ components:
2586
2602
- $ref : ' #/components/schemas/RemovePropertiesUpdate'
2587
2603
- $ref : ' #/components/schemas/SetStatisticsUpdate'
2588
2604
- $ref : ' #/components/schemas/RemoveStatisticsUpdate'
2605
+ - $ref : ' #/components/schemas/RemovePartitionSpecsUpdate'
2589
2606
2590
2607
ViewUpdate :
2591
2608
anyOf :
You can’t perform that action at this time.
0 commit comments