pub fn is_parquet_schema_match_source_schema(
arrow_data_type: &DataType,
rw_data_type: &DataType,
) -> bool
Expand description
This function checks whether the schema of a Parquet file matches the user defined schema. It handles the following special cases:
- Arrow’s
timestamp(_, None)
types (all four time units) match with RisingWave’sTimeStamp
type. - Arrow’s
timestamp(_, Some)
matches with RisingWave’sTimeStamptz
type. - Since RisingWave does not have an
UInt
type:- Arrow’s
UInt8
matches with RisingWave’sInt16
. - Arrow’s
UInt16
matches with RisingWave’sInt32
. - Arrow’s
UInt32
matches with RisingWave’sInt64
. - Arrow’s
UInt64
matches with RisingWave’sDecimal
.
- Arrow’s
- Arrow’s
Float16
matches with RisingWave’sFloat32
.