This is an automated email from the ASF dual-hosted git repository.

hcr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git


The following commit(s) were added to refs/heads/main by this push:
     new c801fe553 Add default null handling to run_throughput_pipeline_py 
function (#1110)
c801fe553 is described below

commit c801fe553703733ff095a0001576d31a21d939f4
Author: Ryan Huang <[email protected]>
AuthorDate: Tue Mar 3 08:22:02 2026 +0800

    Add default null handling to run_throughput_pipeline_py function (#1110)
---
 qdp/qdp-python/src/lib.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/qdp/qdp-python/src/lib.rs b/qdp/qdp-python/src/lib.rs
index 758ff2833..6365992a6 100644
--- a/qdp/qdp-python/src/lib.rs
+++ b/qdp/qdp-python/src/lib.rs
@@ -50,6 +50,7 @@ fn run_throughput_pipeline_py(
         encoding_method,
         seed,
         warmup_batches,
+        null_handling: qdp_core::NullHandling::default(),
     };
     let result = py
         .detach(|| qdp_core::run_throughput_pipeline(&config))

Reply via email to