Commit 29144bb 1 parent fe3c700 commit 29144bb Copy full SHA for 29144bb
File tree 3 files changed +2
-17
lines changed
3 files changed +2
-17
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,6 @@ impl RowVisitor for ProtocolVisitor {
166
166
}
167
167
}
168
168
169
- #[ allow( unused) ]
170
169
#[ derive( Default ) ]
171
170
#[ cfg_attr( feature = "developer-visibility" , visibility:: make( pub ) ) ]
172
171
pub ( crate ) struct AddVisitor {
@@ -240,7 +239,6 @@ impl RowVisitor for AddVisitor {
240
239
}
241
240
}
242
241
243
- #[ allow( unused) ]
244
242
#[ derive( Default ) ]
245
243
#[ cfg_attr( feature = "developer-visibility" , visibility:: make( pub ) ) ]
246
244
pub ( crate ) struct RemoveVisitor {
@@ -315,7 +313,6 @@ impl RowVisitor for RemoveVisitor {
315
313
}
316
314
}
317
315
318
- #[ allow( unused) ]
319
316
#[ derive( Default ) ]
320
317
#[ cfg_attr( feature = "developer-visibility" , visibility:: make( pub ) ) ]
321
318
#[ cfg_attr( not( feature = "developer-visibility" ) , visibility:: make( pub ( crate ) ) ) ]
Original file line number Diff line number Diff line change @@ -20,20 +20,12 @@ const UUID_PART_LEN: usize = 36;
20
20
enum LogPathFileType {
21
21
Commit ,
22
22
SinglePartCheckpoint ,
23
- #[ allow( unused) ]
24
23
UuidCheckpoint ( String ) ,
25
24
// NOTE: Delta spec doesn't actually say, but checkpoint part numbers are effectively 31-bit
26
25
// unsigned integers: Negative values are never allowed, but Java integer types are always
27
26
// signed. Approximate that as u32 here.
28
- #[ allow( unused) ]
29
- MultiPartCheckpoint {
30
- part_num : u32 ,
31
- num_parts : u32 ,
32
- } ,
33
- #[ allow( unused) ]
34
- CompactedCommit {
35
- hi : Version ,
36
- } ,
27
+ MultiPartCheckpoint { part_num : u32 , num_parts : u32 } ,
28
+ CompactedCommit { hi : Version } ,
37
29
Unknown ,
38
30
}
39
31
@@ -42,9 +34,7 @@ enum LogPathFileType {
42
34
#[ cfg_attr( not( feature = "developer-visibility" ) , visibility:: make( pub ( crate ) ) ) ]
43
35
struct ParsedLogPath < Location : AsUrl = FileMeta > {
44
36
pub location : Location ,
45
- #[ allow( unused) ]
46
37
pub filename : String ,
47
- #[ allow( unused) ]
48
38
pub extension : String ,
49
39
pub version : Version ,
50
40
pub file_type : LogPathFileType ,
Original file line number Diff line number Diff line change @@ -84,8 +84,6 @@ pub(crate) fn test_read(
84
84
Ok ( ( ) )
85
85
}
86
86
87
- // TODO (zach): this is listed as unused for acceptance crate
88
- #[ allow( unused) ]
89
87
pub ( crate ) fn read_scan ( scan : & Scan , engine : Arc < dyn Engine > ) -> DeltaResult < Vec < RecordBatch > > {
90
88
let scan_results = scan. execute ( engine) ?;
91
89
scan_results
You can’t perform that action at this time.
0 commit comments