Skip to content

Commit 11c68d7

Browse files
committed
nit
1 parent 340ab16 commit 11c68d7

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

crates/iceberg/src/scan/context.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ use crate::delete_file_index::DeleteFileIndex;
2424
use crate::expr::{Bind, BoundPredicate, Predicate};
2525
use crate::io::object_cache::ObjectCache;
2626
use crate::scan::{
27-
BoundPredicates, ExpressionEvaluatorCache, FileScanTask, ManifestEvaluatorCache,
28-
PartitionFilterCache, AppendSnapshotSet,
27+
AppendSnapshotSet, BoundPredicates, ExpressionEvaluatorCache, FileScanTask,
28+
ManifestEvaluatorCache, PartitionFilterCache,
2929
};
3030
use crate::spec::{
3131
ManifestContentType, ManifestEntryRef, ManifestFile, ManifestList, ManifestStatus, SchemaRef,
@@ -47,7 +47,6 @@ pub(crate) struct ManifestFileContext {
4747
expression_evaluator_cache: Arc<ExpressionEvaluatorCache>,
4848
delete_file_index: DeleteFileIndex,
4949
case_sensitive: bool,
50-
5150
snapshot_range: Option<Arc<AppendSnapshotSet>>,
5251
}
5352

@@ -187,7 +186,6 @@ pub(crate) struct PlanContext {
187186
pub partition_filter_cache: Arc<PartitionFilterCache>,
188187
pub manifest_evaluator_cache: Arc<ManifestEvaluatorCache>,
189188
pub expression_evaluator_cache: Arc<ExpressionEvaluatorCache>,
190-
191189
pub snapshot_range: Option<Arc<AppendSnapshotSet>>,
192190
}
193191

crates/iceberg/src/scan/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ use arrow_array::RecordBatch;
3030
use futures::channel::mpsc::{Sender, channel};
3131
use futures::stream::BoxStream;
3232
use futures::{SinkExt, StreamExt, TryStreamExt};
33-
pub use incremental::IncrementalAppendScanBuilder;
3433
pub(crate) use incremental::AppendSnapshotSet;
34+
pub use incremental::IncrementalAppendScanBuilder;
3535
pub use task::*;
3636

3737
use crate::arrow::ArrowReaderBuilder;

0 commit comments

Comments
 (0)