Skip to content

Commit f66887e

Browse files
authored
GH-48384: [C++][Docs][Parquet] Fix broken link for parquet-format spec (#48385)
### Rationale for this change: - Broken link for dictionary spec for parquet. - Fixes the same ### What changes are included in this PR? - Same as above ### Are these changes tested? - Yes, CI ### Are there any user-facing changes? - Yes, doc update * GitHub Issue: #48384 Authored-by: arnavb <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent b14e109 commit f66887e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

cpp/src/parquet/encoder.cc

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -448,12 +448,11 @@ int64_t RlePreserveBufferSize(int64_t num_values, int bit_width) {
448448
}
449449

450450
/// See the dictionary encoding section of
451-
/// https://github.com/Parquet/parquet-format. The encoding supports
452-
/// streaming encoding. Values are encoded as they are added while the
453-
/// dictionary is being constructed. At any time, the buffered values
454-
/// can be written out with the current dictionary size. More values
455-
/// can then be added to the encoder, including new dictionary
456-
/// entries.
451+
/// https://github.com/apache/parquet-format/blob/master/Encodings.md. The encoding
452+
/// supports streaming encoding. Values are encoded as they are added while the dictionary
453+
/// is being constructed. At any time, the buffered values can be written out with the
454+
/// current dictionary size. More values can then be added to the encoder, including new
455+
/// dictionary entries.
457456
template <typename DType>
458457
class DictEncoderImpl : public EncoderImpl, virtual public DictEncoder<DType> {
459458
using MemoTableType = typename DictEncoderTraits<DType>::MemoTableType;

0 commit comments

Comments
 (0)