Skip to content

Commit

Permalink
Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
ccat3z committed Nov 27, 2024
1 parent 83854a6 commit f725a2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpp/core/jni/JniWrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ JNIEXPORT jlong JNICALL Java_org_apache_gluten_vectorized_ShuffleWriterJniWrappe
partitionWriterOptions.codecBackend = getCodecBackend(env, codecBackendJstr);
partitionWriterOptions.compressionMode = getCompressionMode(env, compressionModeJstr);
}
const auto & conf = ctx->getConfMap();
const auto& conf = ctx->getConfMap();
{
auto it = conf.find(kShuffleFileBufferSize);
if (it != conf.end()) {
Expand Down
2 changes: 1 addition & 1 deletion cpp/core/shuffle/Utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ void MmapFileStream::willNeed(int64_t length) {
if (ret != 0) {
LOG(WARNING) << "madvise willneed failed: " << ::arrow::internal::ErrnoMessage(errno);
}

posFetch_ += fetchLen;
}

Expand Down

0 comments on commit f725a2d

Please sign in to comment.