From 76122922f5a46b3ae0fef0f258b13426dd31ea3e Mon Sep 17 00:00:00 2001 From: jialuo Date: Thu, 17 Jul 2025 21:29:08 +0000 Subject: [PATCH] fix: correct min field from max() to min() in remote function tests --- tests/system/large/functions/test_remote_function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/large/functions/test_remote_function.py b/tests/system/large/functions/test_remote_function.py index 5e60f3ed9f..f3e97aeb85 100644 --- a/tests/system/large/functions/test_remote_function.py +++ b/tests/system/large/functions/test_remote_function.py @@ -1707,7 +1707,7 @@ def analyze(row): { "dtype": row.dtype, "count": row.count(), - "min": row.max(), + "min": row.min(), "max": row.max(), "mean": row.mean(), "std": row.std(),