1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License.

//! Contains definitions for working with Parquet statistics.
//!
//! Though some common methods are available on enum, use pattern match to extract
//! actual min and max values from statistics, see below:
//!
//! ```rust
//! use parquet::file::statistics::Statistics;
//!
//! let stats = Statistics::int32(Some(1), Some(10), None, 3, true);
//! assert_eq!(stats.null_count(), 3);
//! assert!(stats.has_min_max_set());
//! assert!(stats.is_min_max_deprecated());
//!
//! match stats {
//!   Statistics::Int32(ref typed) => {
//!     assert_eq!(*typed.min(), 1);
//!     assert_eq!(*typed.max(), 10);
//!   },
//!   _ => { }
//! }
//! ```

use std::cmp;
use std::fmt;

use basic::Type;
use byteorder::{ByteOrder, LittleEndian};
use data_type::*;
use parquet_format::{Statistics as TStatistics};

// Macro to generate methods create Statistics.
macro_rules! statistics_new_func {
  ($func:ident, $vtype:ty, $stat:ident) => {
    pub fn $func(
      min: $vtype, max: $vtype, distinct: Option<u64>, nulls: u64, is_deprecated: bool
    ) -> Self {
      Statistics::$stat(TypedStatistics::new(min, max, distinct, nulls, is_deprecated))
    }
  }
}

// Macro to generate getter functions for Statistics.
macro_rules! statistics_enum_func {
  ($self:ident, $func:ident) => ({
    match *$self {
      Statistics::Boolean(ref typed) => typed.$func(),
      Statistics::Int32(ref typed) => typed.$func(),
      Statistics::Int64(ref typed) => typed.$func(),
      Statistics::Int96(ref typed) => typed.$func(),
      Statistics::Float(ref typed) => typed.$func(),
      Statistics::Double(ref typed) => typed.$func(),
      Statistics::ByteArray(ref typed) => typed.$func(),
      Statistics::FixedLenByteArray(ref typed) => typed.$func()
    }
  });
}

/// Converts Thrift definition into `Statistics`.
pub fn from_thrift(
  physical_type: Type,
  thrift_stats: Option<TStatistics>
) -> Option<Statistics> {
  match thrift_stats {
    Some(stats) => {
      // Number of nulls recorded, when it is not available, we just mark it as 0.
      let null_count = stats.null_count.unwrap_or(0);
      assert!(null_count >= 0, "Statistics null count is negative ({})", null_count);

      // Generic null count.
      let null_count = null_count as u64;
      // Generic distinct count (count of distinct values occurring)
      let distinct_count = stats.distinct_count.map(|value| value as u64);
      // Whether or not statistics use deprecated min/max fields.
      let old_format = stats.min_value.is_none() && stats.max_value.is_none();
      // Generic min value as bytes.
      let min = if old_format { stats.min } else { stats.min_value };
      // Generic max value as bytes.
      let max = if old_format { stats.max } else { stats.max_value };

      // Values are encoded using PLAIN encoding definition, except that
      // variable-length byte arrays do not include a length prefix.
      //
      // Instead of using actual decoder, we manually convert values.
      let res = match physical_type {
        Type::BOOLEAN => {
          Statistics::boolean(
            min.map(|data| data[0] != 0),
            max.map(|data| data[0] != 0),
            distinct_count,
            null_count,
            old_format
          )
        },
        Type::INT32 => {
          Statistics::int32(
            min.map(|data| LittleEndian::read_i32(&data)),
            max.map(|data| LittleEndian::read_i32(&data)),
            distinct_count,
            null_count,
            old_format
          )
        },
        Type::INT64 => {
          Statistics::int64(
            min.map(|data| LittleEndian::read_i64(&data)),
            max.map(|data| LittleEndian::read_i64(&data)),
            distinct_count,
            null_count,
            old_format
          )
        },
        Type::INT96 => {
          // INT96 statistics may not be correct, because comparison is signed
          // byte-wise, not actual timestamps. It is recommended to ignore min/max
          // statistics for INT96 columns.
          let min = min.map(|data| {
            assert_eq!(data.len(), 12);
            unsafe {
              let raw = ::std::slice::from_raw_parts(data.as_ptr() as *mut u32, 3);
              Int96::from(Vec::from(raw))
            }
          });
          let max = max.map(|data| {
            assert_eq!(data.len(), 12);
            unsafe {
              let raw = ::std::slice::from_raw_parts(data.as_ptr() as *mut u32, 3);
              Int96::from(Vec::from(raw))
            }
          });
          Statistics::int96(min, max, distinct_count, null_count, old_format)
        },
        Type::FLOAT => {
          Statistics::float(
            min.map(|data| LittleEndian::read_f32(&data)),
            max.map(|data| LittleEndian::read_f32(&data)),
            distinct_count,
            null_count,
            old_format
          )
        },
        Type::DOUBLE => {
          Statistics::double(
            min.map(|data| LittleEndian::read_f64(&data)),
            max.map(|data| LittleEndian::read_f64(&data)),
            distinct_count,
            null_count,
            old_format
          )
        },
        Type::BYTE_ARRAY => {
          Statistics::byte_array(
            min.map(|data| ByteArray::from(data)),
            max.map(|data| ByteArray::from(data)),
            distinct_count,
            null_count,
            old_format
          )
        },
        Type::FIXED_LEN_BYTE_ARRAY => {
          Statistics::fixed_len_byte_array(
            min.map(|data| ByteArray::from(data)),
            max.map(|data| ByteArray::from(data)),
            distinct_count,
            null_count,
            old_format
          )
        }
      };

      Some(res)
    },
    None => None
  }
}

// Convert Statistics into Thrift definition.
pub fn to_thrift(stats: Option<&Statistics>) -> Option<TStatistics> {
  if stats.is_none() {
    return None;
  }

  let stats = stats.unwrap();

  let mut thrift_stats = TStatistics {
    max: None,
    min: None,
    null_count: if stats.has_nulls() { Some(stats.null_count() as i64) } else { None },
    distinct_count: stats.distinct_count().map(|value| value as i64),
    max_value: None,
    min_value: None
  };

  // Get min/max if set.
  let (min, max) = if stats.has_min_max_set() {
    (Some(stats.min_bytes().to_vec()), Some(stats.max_bytes().to_vec()))
  } else {
    (None, None)
  };

  if stats.is_min_max_deprecated() {
    thrift_stats.min = min;
    thrift_stats.max = max;
  } else {
    thrift_stats.min_value = min;
    thrift_stats.max_value = max;
  }

  Some(thrift_stats)
}

/// Statistics for a column chunk and data page.
#[derive(Debug, PartialEq)]
pub enum Statistics {
  Boolean(TypedStatistics<BoolType>),
  Int32(TypedStatistics<Int32Type>),
  Int64(TypedStatistics<Int64Type>),
  Int96(TypedStatistics<Int96Type>),
  Float(TypedStatistics<FloatType>),
  Double(TypedStatistics<DoubleType>),
  ByteArray(TypedStatistics<ByteArrayType>),
  FixedLenByteArray(TypedStatistics<FixedLenByteArrayType>)
}

impl Statistics {
  statistics_new_func![boolean, Option<bool>, Boolean];

  statistics_new_func![int32, Option<i32>, Int32];

  statistics_new_func![int64, Option<i64>, Int64];

  statistics_new_func![int96, Option<Int96>, Int96];

  statistics_new_func![float, Option<f32>, Float];

  statistics_new_func![double, Option<f64>, Double];

  statistics_new_func![byte_array, Option<ByteArray>, ByteArray];

  statistics_new_func![fixed_len_byte_array, Option<ByteArray>, FixedLenByteArray];

  /// Returns `true` if statistics have old `min` and `max` fields set.
  /// This means that the column order is likely to be undefined, which, for old files
  /// could mean a signed sort order of values.
  ///
  /// Refer to [`ColumnOrder`](`::basic::ColumnOrder`) and
  /// [`SortOrder`](`::basic::SortOrder`) for more information.
  pub fn is_min_max_deprecated(&self) -> bool {
    statistics_enum_func![self, is_min_max_deprecated]
  }

  /// Returns optional value of number of distinct values occurring.
  /// When it is `None`, the value should be ignored.
  pub fn distinct_count(&self) -> Option<u64> {
    statistics_enum_func![self, distinct_count]
  }

  /// Returns number of null values for the column.
  /// Note that this includes all nulls when column is part of the complex type.
  pub fn null_count(&self) -> u64 {
    statistics_enum_func![self, null_count]
  }

  /// Returns `true` if statistics collected any null values, `false` otherwise.
  pub fn has_nulls(&self) -> bool {
    self.null_count() > 0
  }

  /// Returns `true` if min value and max value are set.
  /// Normally both min/max values will be set to `Some(value)` or `None`.
  pub fn has_min_max_set(&self) -> bool {
    statistics_enum_func![self, has_min_max_set]
  }

  /// Returns slice of bytes that represent min value.
  /// Panics if min value is not set.
  pub fn min_bytes(&self) -> &[u8] {
    statistics_enum_func![self, min_bytes]
  }

  /// Returns slice of bytes that represent max value.
  /// Panics if max value is not set.
  pub fn max_bytes(&self) -> &[u8] {
    statistics_enum_func![self, max_bytes]
  }

  /// Returns physical type associated with statistics.
  pub fn physical_type(&self) -> Type {
    match self {
      Statistics::Boolean(_) => Type::BOOLEAN,
      Statistics::Int32(_) => Type::INT32,
      Statistics::Int64(_) => Type::INT64,
      Statistics::Int96(_) => Type::INT96,
      Statistics::Float(_) => Type::FLOAT,
      Statistics::Double(_) => Type::DOUBLE,
      Statistics::ByteArray(_) => Type::BYTE_ARRAY,
      Statistics::FixedLenByteArray(_) => Type::FIXED_LEN_BYTE_ARRAY
    }
  }
}

impl fmt::Display for Statistics {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    match self {
      Statistics::Boolean(typed) => write!(f, "{}", typed),
      Statistics::Int32(typed) => write!(f, "{}", typed),
      Statistics::Int64(typed) => write!(f, "{}", typed),
      Statistics::Int96(typed) => write!(f, "{}", typed),
      Statistics::Float(typed) => write!(f, "{}", typed),
      Statistics::Double(typed) => write!(f, "{}", typed),
      Statistics::ByteArray(typed) => write!(f, "{}", typed),
      Statistics::FixedLenByteArray(typed) => write!(f, "{}", typed)
    }
  }
}

/// Typed implementation for [`Statistics`].
pub struct TypedStatistics<T: DataType> {
  min: Option<T::T>,
  max: Option<T::T>,
  // Distinct count could be omitted in some cases
  distinct_count: Option<u64>,
  null_count: u64,
  is_min_max_deprecated: bool
}

impl<T: DataType> TypedStatistics<T> {
  /// Creates new typed statistics.
  pub fn new(
    min: Option<T::T>,
    max: Option<T::T>,
    distinct_count: Option<u64>,
    null_count: u64,
    is_min_max_deprecated: bool
  ) -> Self {
    Self {
      min: min,
      max: max,
      distinct_count: distinct_count,
      null_count: null_count,
      is_min_max_deprecated: is_min_max_deprecated
    }
  }

  /// Returns min value of the statistics.
  ///
  /// Panics if min value is not set, e.g. all values are `null`.
  /// Use `has_min_max_set` method to check that.
  pub fn min(&self) -> &T::T {
    self.min.as_ref().unwrap()
  }

  /// Returns max value of the statistics.
  ///
  /// Panics if max value is not set, e.g. all values are `null`.
  /// Use `has_min_max_set` method to check that.
  pub fn max(&self) -> &T::T {
    self.max.as_ref().unwrap()
  }

  /// Returns min value as bytes of the statistics.
  ///
  /// Panics if min value is not set, use `has_min_max_set` method to check
  /// if values are set.
  pub fn min_bytes(&self) -> &[u8] {
    self.min().as_bytes()
  }

  /// Returns max value as bytes of the statistics.
  ///
  /// Panics if max value is not set, use `has_min_max_set` method to check
  /// if values are set.
  pub fn max_bytes(&self) -> &[u8] {
    self.max().as_bytes()
  }

  /// Whether or not min and max values are set.
  /// Normally both min/max values will be set to `Some(value)` or `None`.
  fn has_min_max_set(&self) -> bool {
    self.min.is_some() && self.max.is_some()
  }

  /// Returns optional value of number of distinct values occurring.
  fn distinct_count(&self) -> Option<u64> {
    self.distinct_count
  }

  /// Returns null count.
  fn null_count(&self) -> u64 {
    self.null_count
  }

  /// Returns `true` if statistics were created using old min/max fields.
  fn is_min_max_deprecated(&self) -> bool {
    self.is_min_max_deprecated
  }
}

impl<T: DataType> fmt::Display for TypedStatistics<T> {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    write!(f, "{{")?;
    write!(f, "min: ")?;
    match self.min {
      Some(ref value) => self.value_fmt(f, value)?,
      None => write!(f, "N/A")?
    }
    write!(f, ", max: ")?;
    match self.max {
      Some(ref value) => self.value_fmt(f, value)?,
      None => write!(f, "N/A")?
    }
    write!(f, ", distinct_count: ")?;
    match self.distinct_count {
      Some(value) => write!(f, "{}", value)?,
      None => write!(f, "N/A")?
    }
    write!(f, ", null_count: {}", self.null_count)?;
    write!(f, ", min_max_deprecated: {}", self.is_min_max_deprecated)?;
    write!(f, "}}")
  }
}

impl<T: DataType> fmt::Debug for TypedStatistics<T> {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    write!(
      f,
      "{{min: {:?}, max: {:?}, distinct_count: {:?}, null_count: {}, \
        min_max_deprecated: {}}}",
      self.min, self.max, self.distinct_count, self.null_count,
        self.is_min_max_deprecated
    )
  }
}

impl<T: DataType> cmp::PartialEq for TypedStatistics<T> {
  fn eq(&self, other: &TypedStatistics<T>) -> bool {
    self.min == other.min && self.max == other.max &&
      self.distinct_count == other.distinct_count &&
      self.null_count == other.null_count &&
      self.is_min_max_deprecated == other.is_min_max_deprecated
  }
}

/// Trait to provide a specific write format for values.
/// For example, we should display vector slices for byte array types, and original
/// values for other types.
trait ValueDisplay<T: DataType> {
  fn value_fmt(&self, f: &mut fmt::Formatter, value: &T::T) -> fmt::Result;
}

impl<T: DataType> ValueDisplay<T> for TypedStatistics<T> {
  default fn value_fmt(&self, f: &mut fmt::Formatter, value: &T::T) -> fmt::Result {
    write!(f, "{:?}", value)
  }
}

impl ValueDisplay<Int96Type> for TypedStatistics<Int96Type> {
  fn value_fmt(&self, f: &mut fmt::Formatter, value: &Int96) -> fmt::Result {
    write!(f, "{:?}", value.data())
  }
}

impl ValueDisplay<ByteArrayType> for TypedStatistics<ByteArrayType> {
  fn value_fmt(&self, f: &mut fmt::Formatter, value: &ByteArray) -> fmt::Result {
    write!(f, "{:?}", value.data())
  }
}

impl ValueDisplay<FixedLenByteArrayType> for TypedStatistics<FixedLenByteArrayType> {
  fn value_fmt(&self, f: &mut fmt::Formatter, value: &ByteArray) -> fmt::Result {
    write!(f, "{:?}", value.data())
  }
}


#[cfg(test)]
mod tests {
  use super::*;

  #[test]
  fn test_statistics_min_max_bytes() {
    let stats = Statistics::int32(Some(-123), Some(234), None, 1, false);
    assert!(stats.has_min_max_set());
    assert_eq!(stats.min_bytes(), (-123).as_bytes());
    assert_eq!(stats.max_bytes(), 234.as_bytes());

    let stats = Statistics::byte_array(
      Some(ByteArray::from(vec![1, 2, 3])),
      Some(ByteArray::from(vec![3, 4, 5])),
      None, 1,
      true
    );
    assert!(stats.has_min_max_set());
    assert_eq!(stats.min_bytes(), &[1, 2, 3]);
    assert_eq!(stats.max_bytes(), &[3, 4, 5]);
  }

  #[test]
  #[should_panic(expected = "Statistics null count is negative (-10)")]
  fn test_statistics_negative_null_count() {
    let thrift_stats = TStatistics {
      max: None,
      min: None,
      null_count: Some(-10),
      distinct_count: None,
      max_value: None,
      min_value: None
    };

    from_thrift(Type::INT32, Some(thrift_stats));
  }

  #[test]
  fn test_statistics_thrift_none() {
    assert_eq!(from_thrift(Type::INT32, None), None);
    assert_eq!(from_thrift(Type::BYTE_ARRAY, None), None);
  }

  #[test]
  fn test_statistics_debug() {
    let stats = Statistics::int32(Some(1), Some(12), None, 12, true);
    assert_eq!(
      format!("{:?}", stats),
      "Int32({min: Some(1), max: Some(12), distinct_count: None, \
        null_count: 12, min_max_deprecated: true})"
    );

    let stats = Statistics::int32(None, None, None, 7, false);
    assert_eq!(
      format!("{:?}", stats),
      "Int32({min: None, max: None, distinct_count: None, \
        null_count: 7, min_max_deprecated: false})"
    )
  }

  #[test]
  fn test_statistics_display() {
    let stats = Statistics::int32(Some(1), Some(12), None, 12, true);
    assert_eq!(
      format!("{}", stats),
      "{min: 1, max: 12, distinct_count: N/A, \
        null_count: 12, min_max_deprecated: true}"
    );

    let stats = Statistics::int64(None, None, None, 7, false);
    assert_eq!(
      format!("{}", stats),
      "{min: N/A, max: N/A, distinct_count: N/A, \
        null_count: 7, min_max_deprecated: false}"
    );

    let stats = Statistics::int96(
      Some(Int96::from(vec![1, 0, 0])),
      Some(Int96::from(vec![2, 3, 4])),
      None,
      3,
      true
    );
    assert_eq!(
      format!("{}", stats),
      "{min: [1, 0, 0], max: [2, 3, 4], distinct_count: N/A, \
        null_count: 3, min_max_deprecated: true}"
    );

    let stats = Statistics::byte_array(
      Some(ByteArray::from(vec![1u8])),
      Some(ByteArray::from(vec![2u8])),
      Some(5),
      7,
      false
    );
    assert_eq!(
      format!("{}", stats),
      "{min: [1], max: [2], distinct_count: 5, \
        null_count: 7, min_max_deprecated: false}"
    );
  }

  #[test]
  fn test_statistics_partial_eq() {
    let expected = Statistics::int32(Some(12), Some(45), None, 11, true);

    assert!(Statistics::int32(Some(12), Some(45), None, 11, true) == expected);
    assert!(Statistics::int32(Some(11), Some(45), None, 11, true) != expected);
    assert!(Statistics::int32(Some(12), Some(44), None, 11, true) != expected);
    assert!(Statistics::int32(Some(12), Some(45), None, 23, true) != expected);
    assert!(Statistics::int32(Some(12), Some(45), None, 11, false) != expected);

    assert!(
      Statistics::int32(Some(12), Some(45), None, 11, false) !=
      Statistics::int64(Some(12), Some(45), None, 11, false)
    );

    assert!(
      Statistics::boolean(Some(false), Some(true), None, 0, true) !=
      Statistics::double(Some(1.2), Some(4.5), None, 0, true)
    );

    assert!(
      Statistics::byte_array(
        Some(ByteArray::from(vec![1, 2, 3])),
        Some(ByteArray::from(vec![1, 2, 3])),
        None,
        0,
        true
      ) != Statistics::fixed_len_byte_array(
        Some(ByteArray::from(vec![1, 2, 3])),
        Some(ByteArray::from(vec![1, 2, 3])),
        None,
        0,
        true
      )
    );
  }

  #[test]
  fn test_statistics_from_thrift() {
    // Helper method to check statistics conversion.
    fn check_stats(stats: Statistics) {
      let tpe = stats.physical_type();
      let thrift_stats = to_thrift(Some(&stats));
      assert_eq!(from_thrift(tpe, thrift_stats), Some(stats));
    }

    check_stats(Statistics::boolean(Some(false), Some(true), None, 7, true));
    check_stats(Statistics::boolean(Some(false), Some(true), None, 7, true));
    check_stats(Statistics::boolean(Some(false), Some(true), None, 0, false));
    check_stats(Statistics::boolean(Some(true), Some(true), None, 7, true));
    check_stats(Statistics::boolean(Some(false), Some(false), None, 7, true));
    check_stats(Statistics::boolean(None, None, None, 7, true));

    check_stats(Statistics::int32(Some(-100), Some(500), None, 7, true));
    check_stats(Statistics::int32(Some(-100), Some(500), None, 0, false));
    check_stats(Statistics::int32(None, None, None, 7, true));

    check_stats(Statistics::int64(Some(-100), Some(200), None, 7, true));
    check_stats(Statistics::int64(Some(-100), Some(200), None, 0, false));
    check_stats(Statistics::int64(None, None, None, 7, true));

    check_stats(Statistics::float(Some(1.2), Some(3.4), None, 7, true));
    check_stats(Statistics::float(Some(1.2), Some(3.4), None, 0, false));
    check_stats(Statistics::float(None, None, None, 7, true));

    check_stats(Statistics::double(Some(1.2), Some(3.4), None, 7, true));
    check_stats(Statistics::double(Some(1.2), Some(3.4), None, 0, false));
    check_stats(Statistics::double(None, None, None, 7, true));

    check_stats(
      Statistics::byte_array(
        Some(ByteArray::from(vec![1, 2, 3])),
        Some(ByteArray::from(vec![3, 4, 5])),
        None,
        7,
        true
      )
    );
    check_stats(Statistics::byte_array(None, None, None, 7, true));

    check_stats(
      Statistics::fixed_len_byte_array(
        Some(ByteArray::from(vec![1, 2, 3])),
        Some(ByteArray::from(vec![3, 4, 5])),
        None,
        7,
        true
      )
    );
    check_stats(Statistics::fixed_len_byte_array(None, None, None, 7, true));
  }
}