This is an automated email from the ASF dual-hosted git repository.
milenkovicm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new 118327ca optimise clone function maps (#1352)
118327ca is described below
commit 118327ca424cf14e38e522b7f0af4ed9c6b3c8c3
Author: Mo Yi <[email protected]>
AuthorDate: Fri Dec 19 18:53:20 2025 +0800
optimise clone function maps (#1352)
---
ballista/core/src/serde/scheduler/from_proto.rs | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/ballista/core/src/serde/scheduler/from_proto.rs
b/ballista/core/src/serde/scheduler/from_proto.rs
index 4072bf09..dc8c53c7 100644
--- a/ballista/core/src/serde/scheduler/from_proto.rs
+++ b/ballista/core/src/serde/scheduler/from_proto.rs
@@ -334,9 +334,9 @@ pub fn get_task_definition<T: 'static + AsLogicalPlan, U:
'static + AsExecutionP
None,
task.session_id.clone(),
session_config.clone(),
- scalar_functions.clone(),
- aggregate_functions.clone(),
- window_functions.clone(),
+ scalar_functions,
+ aggregate_functions,
+ window_functions,
runtime.clone(),
);
@@ -394,9 +394,9 @@ pub fn get_task_definition_vec<
None,
uuid::Uuid::new_v4().to_string(),
session_config.clone(),
- scalar_functions.clone(),
- aggregate_functions.clone(),
- window_functions.clone(),
+ scalar_functions,
+ aggregate_functions,
+ window_functions,
runtime.clone(),
);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]