Skip to content

Commit f11f3fe

Browse files
TimelordUKclaude
andcommitted
fix: Add missing ColumnRef import in window_functions/mod.rs
The rust-build-fixer agent removed the ColumnRef import while fixing clippy warnings, but this import is actually needed for the test at line 770. Changes: - src/sql/window_functions/mod.rs: Added ColumnRef to imports - src/query_plan/into_clause_remover.rs: Removed unused SelectItem import Fixes CI build error. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a386f38 commit f11f3fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/query_plan/into_clause_remover.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ impl IntoClauseRemover {
196196
#[cfg(test)]
197197
mod tests {
198198
use super::*;
199-
use crate::sql::parser::ast::{IntoTable, SelectItem};
199+
use crate::sql::parser::ast::IntoTable;
200200

201201
#[test]
202202
fn test_remove_simple_into() {

src/sql/window_functions/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::collections::HashMap;
66
use std::sync::Arc;
77

88
use crate::data::datatable::DataValue;
9-
use crate::sql::parser::ast::{SqlExpression, WindowSpec};
9+
use crate::sql::parser::ast::{ColumnRef, SqlExpression, WindowSpec};
1010
use crate::sql::window_context::WindowContext;
1111

1212
/// Window function computation trait

0 commit comments

Comments
 (0)