Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 006b4b2

Browse files
committed
Fix scalastyle by removing non ascii characters
1 parent 8b000ca commit 006b4b2

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

core/src/main/scala/org/apache/spark/util/collection/PartitionedSerializedPairBuffer.scala

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,12 @@ import org.apache.spark.util.collection.PartitionedSerializedPairBuffer._
4141
*
4242
* Currently, only sorting by partition is supported.
4343
*
44-
* Each record is laid out inside the the metaBuffer as follows:
44+
* Each record is laid out inside the the metaBuffer as follows. keyStart, a long, is split across
45+
* two integers:
4546
*
46-
* ┌─────────────┬────────────┬────────────┬─────────────┐
47-
* │ keyStart │ keyValLen │ partitionId │
48-
* └─────────────┴────────────┴────────────┴─────────────┘
49-
* ▲
50-
* └──────┐
51-
* │
52-
* Split across two integers
47+
* +-------------+------------+------------+-------------+
48+
* | keyStart | keyValLen | partitionId |
49+
* +-------------+------------+------------+-------------+
5350
*
5451
* @param metaInitialRecords The initial number of entries in the metadata buffer.
5552
* @param kvBlockSize The size of each byte buffer in the ChainedBuffer used to store the records.

0 commit comments

Comments
 (0)