Skip to content

Commit

Permalink
apply suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
mapleFU committed Sep 2, 2024
1 parent 406e177 commit c470800
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/compute/row/row_encoder_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -323,10 +323,10 @@ struct ARROW_EXPORT NullKeyEncoder : KeyEncoder {
/// [null byte, variable-byte length, variable bytes]. For example:
///
/// String "abc" Would be encoded as:
/// [0 0 0 0 3 'a' 'b' 'c']
/// 0 ( 1 byte for not null) + 3 ( 4 bytes for length ) + "abc" (payload)
///
/// Null string Would be encoded as:
/// [1 0 0 0 0]
/// 1 ( 1 byte for null) + 3 ( 4 bytes for length )
///
/// # Row Encoding
///
Expand Down

0 comments on commit c470800

Please sign in to comment.