Create a decoder for a type. This is the standard way to create child decoders from within a decoder implementation.
(
&self,
data_type: &DataType,
is_nullable: bool,
)
| 750 | /// This is the standard way to create child decoders from within a decoder |
| 751 | /// implementation. |
| 752 | fn make_decoder( |
| 753 | &self, |
| 754 | data_type: &DataType, |
| 755 | is_nullable: bool, |
| 756 | ) -> Result<Box<dyn ArrayDecoder>, ArrowError> { |
| 757 | make_decoder(self, data_type, is_nullable) |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | fn make_decoder( |
no test coverage detected