We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbeedea commit 8823736Copy full SHA for 8823736
src/storage/secondary/column.rs
@@ -160,7 +160,6 @@ impl Column {
160
let info = self.index.index(block_id).clone();
161
let block = tokio::task::spawn_blocking(move || {
162
let mut data = vec![0; info.length as usize];
163
- // TODO(chi): handle file system errors
164
match file {
165
ColumnReadableFile::PositionedRead(file) => {
166
file.read_exact_at(&mut data[..], info.offset)?;
0 commit comments