Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxinshuo.db committed Jun 26, 2024
1 parent d50a94a commit 75bbb2c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cpp/core/jni/JniWrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 75bbb2c

Please sign in to comment.