Skip to content

Commit

Permalink
refactor: rename crate::arrows to crate::ondisk::arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Jul 28, 2024
1 parent 453fc07 commit b4fb9f7
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![allow(dead_code)]
mod arrows;
mod compaction;
pub mod executor;
pub mod fs;
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/ondisk/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
mod arrows;
pub(crate) mod scan;
pub(crate) mod sstable;
3 changes: 1 addition & 2 deletions src/ondisk/sstable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ use parquet::{
};
use tokio_util::compat::{Compat, FuturesAsyncReadCompatExt};

use super::scan::SsTableScan;
use super::{arrows::get_range_filter, scan::SsTableScan};
use crate::{
arrows::get_range_filter,
fs::{AsyncFile, FileProvider},
record::Record,
stream::record_batch::RecordBatchEntry,
Expand Down

0 comments on commit b4fb9f7

Please sign in to comment.