File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -448,7 +448,7 @@ jobs:
448448 tool : nextest
449449 - name : Rust Tests (Windows)
450450 if : matrix.os == 'windows-x64'
451- run : cargo nextest run --locked --workspace --all-features --no-fail-fast --exclude bench-vortex --exclude vortex-python --exclude vortex-duckdb
451+ run : cargo nextest run --locked --workspace --all-features --no-fail-fast --exclude bench-vortex --exclude vortex-python --exclude vortex-duckdb --exclude vortex-fuzz
452452 - name : Rust Tests (Other)
453453 if : matrix.os != 'windows-x64'
454454 run : cargo nextest run --locked --workspace --all-features --no-fail-fast --exclude bench-vortex
Original file line number Diff line number Diff line change @@ -125,9 +125,8 @@ impl ReadSource for ObjectStoreIoSource {
125125 )
126126 . await ?;
127127
128- #[ cfg_attr( unix, allow( unused_mut) ) ]
129128 let buffer = match response. payload {
130- object_store:: GetResultPayload :: File ( mut file, _) => {
129+ object_store:: GetResultPayload :: File ( file, _) => {
131130 // SAFETY: We're setting the length to the exact size we're about to read.
132131 // The read_exact_at call will either fill the entire buffer or return an error,
133132 // ensuring no uninitialized memory is exposed.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use std::fs::File;
66use std:: io:: { Read , Seek } ;
77#[ cfg( unix) ]
88use std:: os:: unix:: fs:: FileExt ;
9- #[ cfg( all ( not ( unix ) , windows) ) ]
9+ #[ cfg( windows) ]
1010use std:: os:: windows:: fs:: FileExt ;
1111use std:: path:: { Path , PathBuf } ;
1212use std:: sync:: Arc ;
You can’t perform that action at this time.
0 commit comments