File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -176,10 +176,7 @@ impl UsageCounterState {
176
176
} ,
177
177
UsageEvent :: CurrentVectorStorage { tables : _ } => todo ! ( ) ,
178
178
UsageEvent :: CurrentDatabaseStorage { tables : _ } => todo ! ( ) ,
179
- UsageEvent :: CurrentFileStorage {
180
- total_size : _,
181
- by_component : _,
182
- } => todo ! ( ) ,
179
+ UsageEvent :: CurrentFileStorage { total_size : _ } => todo ! ( ) ,
183
180
UsageEvent :: CurrentDocumentCounts { tables : _ } => todo ! ( ) ,
184
181
}
185
182
}
Original file line number Diff line number Diff line change 1
- use std:: collections:: BTreeMap ;
2
-
3
1
use async_trait:: async_trait;
4
2
use serde:: {
5
3
Deserialize ,
@@ -110,10 +108,7 @@ pub enum UsageEvent {
110
108
tables : Vec < TableDatabaseStorage > ,
111
109
} ,
112
110
CurrentFileStorage {
113
- // TODO(ENG-7423): Clean up this old field once no databricks tables and queries rely on
114
- // it. They should use the by_component field instead.
115
111
total_size : u64 ,
116
- by_component : BTreeMap < Option < String > , u64 > ,
117
112
} ,
118
113
CurrentDocumentCounts {
119
114
tables : Vec < TableDocumentCount > ,
You can’t perform that action at this time.
0 commit comments