Skip to content

Commit

Permalink
fix uncompressed not set
Browse files Browse the repository at this point in the history
  • Loading branch information
marin-ma committed Nov 10, 2023
1 parent 337b9d9 commit 3b85462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/core/jni/JniWrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -785,8 +785,8 @@ JNIEXPORT jlong JNICALL Java_io_glutenproject_vectorized_ShuffleWriterJniWrapper
shuffleWriterOptions.buffer_size = bufferSize;
}

shuffleWriterOptions.compression_type = getCompressionType(env, codecJstr);
if (codecJstr != NULL) {
shuffleWriterOptions.compression_type = getCompressionType(env, codecJstr);
shuffleWriterOptions.codec_backend = getCodecBackend(env, codecBackendJstr);
shuffleWriterOptions.compression_mode = getCompressionMode(env, compressionModeJstr);
}
Expand Down

0 comments on commit 3b85462

Please sign in to comment.