Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
run: cargo fmt --all --check

- name: Lint Rust code
run: cargo clippy --all-targets --all-features
run: cargo clippy --all-targets --all-features -- -D warnings
2 changes: 0 additions & 2 deletions src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,6 @@ impl IntoIterator for QueryResult {
/// Holds the column-name index in an `Arc` so each yielded [`Row`] can share
/// the same name-to-position map, so there is no per-row HashMap allocation.
pub struct QueryIterator {
schema: SchemaRef,
batches: Vec<RecordBatch>,
batch_idx: usize,
row_idx: usize,
Expand All @@ -306,7 +305,6 @@ impl QueryIterator {
.map(|(i, n)| (n.clone(), i))
.collect();
QueryIterator {
schema,
batches,
batch_idx: 0,
row_idx: 0,
Expand Down
Loading