From db2968a5dfea456e6e888d7cc623756098e75862 Mon Sep 17 00:00:00 2001 From: zjuwangg Date: Thu, 7 Mar 2024 14:07:43 +0800 Subject: [PATCH] fix cpp compile error --- cpp/core/jni/JniWrapper.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/core/jni/JniWrapper.cc b/cpp/core/jni/JniWrapper.cc index 8274198fb4b66..56c14719ccf32 100644 --- a/cpp/core/jni/JniWrapper.cc +++ b/cpp/core/jni/JniWrapper.cc @@ -845,7 +845,7 @@ JNIEXPORT jlong JNICALL Java_io_glutenproject_vectorized_ShuffleWriterJniWrapper .partitioning = gluten::toPartitioning(jStringToCString(env, partitioningNameJstr)), .taskAttemptId = (int64_t)taskAttemptId, .startPartitionId = startPartitionId, - .sortBeforeRepartition = sortBeforeRR, + .sortBeforeRR = sortBeforeRR, }; jclass cls = env->FindClass("java/lang/Thread");