File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -97,8 +97,8 @@ impl DecimalArrayConverter {
9797 }
9898}
9999
100- impl Converter < Vec < Option < ByteArray > > , DecimalArray > for DecimalArrayConverter {
101- fn convert ( & self , source : Vec < Option < ByteArray > > ) -> Result < DecimalArray > {
100+ impl Converter < Vec < Option < FixedLenByteArray > > , DecimalArray > for DecimalArrayConverter {
101+ fn convert ( & self , source : Vec < Option < FixedLenByteArray > > ) -> Result < DecimalArray > {
102102 let mut builder = DecimalBuilder :: new (
103103 source. len ( ) ,
104104 self . precision as usize ,
@@ -329,7 +329,7 @@ pub type FixedLenBinaryConverter = ArrayRefConverter<
329329> ;
330330
331331pub type DecimalConverter =
332- ArrayRefConverter < Vec < Option < ByteArray > > , DecimalArray , DecimalArrayConverter > ;
332+ ArrayRefConverter < Vec < Option < FixedLenByteArray > > , DecimalArray , DecimalArrayConverter > ;
333333
334334pub struct FromConverter < S , T > {
335335 _source : PhantomData < S > ,
You can’t perform that action at this time.
0 commit comments