We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1827d04 commit 87a19c4Copy full SHA for 87a19c4
1 file changed
parquet/src/data_type.rs
@@ -725,6 +725,10 @@ pub(crate) mod private {
725
fn skip(decoder: &mut PlainDecoderDetails, num_values: usize) -> Result<usize>;
726
727
/// Return the size in bytes for the value encoded in the plain encoding.
728
+ ///
729
+ /// This method is only used with the dictionary encoding. Since the writer
730
+ /// does not use the dictionary encoding for BOOLEAN type, this method's
731
+ /// implementation for bool will panic if called.
732
fn plain_encoded_size(&self) -> usize;
733
734
/// Return the number of variable length bytes in a given slice of data
0 commit comments