Skip to content
Open
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
17 changes: 5 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ arrow-flight = { version = "55.2.0", features = [
] }
arrow-ipc = { version = "55.2.0", default-features = false, features = [
"lz4",
"zstd",
] }
arrow-ord = { version = "55.2.0", default-features = false }
arrow-schema = { version = "55.2.0", default-features = false }
Expand Down Expand Up @@ -198,6 +197,7 @@ rpath = false
strip = false # Retain debug info for flamegraphs

[profile.ci]
debug = false
inherits = "dev"
incremental = false

Expand Down
Empty file added ci.test
Empty file.
1 change: 1 addition & 0 deletions datafusion-examples/examples/advanced_udwf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ impl WindowUDFImpl for SimplifySmoothItUdf {
order_by: window_function.params.order_by,
window_frame: window_function.params.window_frame,
null_treatment: window_function.params.null_treatment,
distinct: window_function.params.distinct,
},
}))
};
Expand Down
1 change: 1 addition & 0 deletions datafusion/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ compression = [
"bzip2",
"flate2",
"zstd",
"arrow-ipc/zstd",
"datafusion-datasource/compression",
]
crypto_expressions = ["datafusion-functions/crypto_expressions"]
Expand Down
2 changes: 2 additions & 0 deletions datafusion/core/src/physical_planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1646,6 +1646,7 @@ pub fn create_window_expr_with_name(
order_by,
window_frame,
null_treatment,
distinct,
},
} = window_fun.as_ref();
let physical_args =
Expand Down Expand Up @@ -1674,6 +1675,7 @@ pub fn create_window_expr_with_name(
window_frame,
physical_schema,
ignore_nulls,
*distinct,
)
}
other => plan_err!("Invalid window expression '{other:?}'"),
Expand Down
3 changes: 3 additions & 0 deletions datafusion/core/tests/fuzz_cases/window_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ async fn bounded_window_causal_non_causal() -> Result<()> {
Arc::new(window_frame),
&extended_schema,
false,
false,
)?;
let running_window_exec = Arc::new(BoundedWindowAggExec::try_new(
vec![window_expr],
Expand Down Expand Up @@ -660,6 +661,7 @@ async fn run_window_test(
Arc::new(window_frame.clone()),
&extended_schema,
false,
false,
)?],
exec1,
false,
Expand All @@ -678,6 +680,7 @@ async fn run_window_test(
Arc::new(window_frame.clone()),
&extended_schema,
false,
false,
)?],
exec2,
search_mode.clone(),
Expand Down
Loading
Loading