Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
zjuwangg committed Mar 7, 2024
1 parent aec5b6f commit 470e552
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/velox/shuffle/VeloxShuffleWriter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ arrow::Status VeloxShuffleWriter::init() {
VELOX_CHECK_LE(options_.bufferSize, 32 * 1024);

ARROW_ASSIGN_OR_RAISE(
partitioner_, Partitioner::make(options_.partitioning, numPartitions_, options_.startPartitionId, options_.sortBeforeRR));
partitioner_,
Partitioner::make(options_.partitioning, numPartitions_, options_.startPartitionId, options_.sortBeforeRR));

// pre-allocated buffer size for each partition, unit is row count
// when partitioner is SinglePart, partial variables don`t need init
Expand Down

0 comments on commit 470e552

Please sign in to comment.