use crate::schema::types::{ParquetType, PrimitiveType};
#[cfg(feature = "serde_types")]
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde_types", derive(Deserialize, Serialize))]
pub struct Descriptor {
pub primitive_type: PrimitiveType,
pub max_def_level: i16,
pub max_rep_level: i16,
}
#[derive(Debug, PartialEq, Clone)]
#[cfg_attr(feature = "serde_types", derive(Deserialize, Serialize))]
pub struct ColumnDescriptor {
pub descriptor: Descriptor,
pub path_in_schema: Vec<String>,
pub base_type: ParquetType,
}
impl ColumnDescriptor {
pub fn new(
descriptor: Descriptor,
path_in_schema: Vec<String>,
base_type: ParquetType,
) -> Self {
Self {
descriptor,
path_in_schema,
base_type,
}
}
}