From 75bbb2c0d637c9ae6f3da06c3b8ea51e37d717d5 Mon Sep 17 00:00:00 2001 From: "wangxinshuo.db" Date: Wed, 26 Jun 2024 11:39:33 +0800 Subject: [PATCH] fix --- cpp/core/jni/JniWrapper.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cpp/core/jni/JniWrapper.cc b/cpp/core/jni/JniWrapper.cc index 0fd26ebb0dac1..b4088ccae9345 100644 --- a/cpp/core/jni/JniWrapper.cc +++ b/cpp/core/jni/JniWrapper.cc @@ -515,6 +515,9 @@ Java_org_apache_gluten_vectorized_NativeColumnarToRowJniWrapper_nativeColumnarTo if (confIsLeagal) { column2RowMemThreshold = std::stoll(it->second); } else { + LOG(INFO) + << "Because the spark.gluten.sql.columnToRowMemoryThreshold configuration item is invalid, the kColumnToRowMemoryDefaultThreshold default value is used, which is " + << kColumnToRowMemoryDefaultThreshold << " byte"; column2RowMemThreshold = std::stoll(kColumnToRowMemoryDefaultThreshold); }