@@ -4,7 +4,8 @@ use crate::types::{FromSqlError, FromSqlResult};
4
4
use crate :: Row ;
5
5
use rust_decimal:: prelude:: * ;
6
6
7
- use arrow:: array:: { Array , ListArray } ;
7
+ use arrow:: array:: { Array , DictionaryArray , ListArray } ;
8
+ use arrow:: datatypes:: { UInt16Type , UInt32Type , UInt8Type } ;
8
9
9
10
/// An absolute length of time in seconds, milliseconds, microseconds or nanoseconds.
10
11
/// Copy from arrow::datatypes::TimeUnit
@@ -75,6 +76,19 @@ pub enum ValueRef<'a> {
75
76
} ,
76
77
/// The value is a list
77
78
List ( & ' a ListArray , usize ) ,
79
+ /// The value is an enum
80
+ Enum ( EnumType < ' a > , usize ) ,
81
+ }
82
+
83
+ /// Wrapper type for different enum sizes
84
+ #[ derive( Debug , Copy , Clone , PartialEq ) ]
85
+ pub enum EnumType < ' a > {
86
+ /// The underlying enum type is u8
87
+ UInt8 ( & ' a DictionaryArray < UInt8Type > ) ,
88
+ /// The underlying enum type is u16
89
+ UInt16 ( & ' a DictionaryArray < UInt16Type > ) ,
90
+ /// The underlying enum type is u32
91
+ UInt32 ( & ' a DictionaryArray < UInt32Type > ) ,
78
92
}
79
93
80
94
impl ValueRef < ' _ > {
@@ -103,6 +117,7 @@ impl ValueRef<'_> {
103
117
ValueRef :: Time64 ( ..) => Type :: Time64 ,
104
118
ValueRef :: Interval { .. } => Type :: Interval ,
105
119
ValueRef :: List ( arr, _) => arr. data_type ( ) . into ( ) ,
120
+ ValueRef :: Enum ( ..) => Type :: Enum ,
106
121
}
107
122
}
108
123
@@ -170,6 +185,24 @@ impl From<ValueRef<'_>> for Value {
170
185
. collect ( ) ;
171
186
Value :: List ( map)
172
187
}
188
+ ValueRef :: Enum ( items, idx) => {
189
+ let value = Row :: value_ref_internal (
190
+ idx,
191
+ 0 ,
192
+ match items {
193
+ EnumType :: UInt8 ( res) => res. values ( ) ,
194
+ EnumType :: UInt16 ( res) => res. values ( ) ,
195
+ EnumType :: UInt32 ( res) => res. values ( ) ,
196
+ } ,
197
+ )
198
+ . to_owned ( ) ;
199
+
200
+ if let Value :: Text ( s) = value {
201
+ Value :: Enum ( s)
202
+ } else {
203
+ panic ! ( "Enum value is not a string" )
204
+ }
205
+ }
173
206
}
174
207
}
175
208
}
@@ -213,6 +246,7 @@ impl<'a> From<&'a Value> for ValueRef<'a> {
213
246
Value :: Time64 ( t, d) => ValueRef :: Time64 ( t, d) ,
214
247
Value :: Interval { months, days, nanos } => ValueRef :: Interval { months, days, nanos } ,
215
248
Value :: List ( ..) => unimplemented ! ( ) ,
249
+ Value :: Enum ( ..) => todo ! ( ) ,
216
250
}
217
251
}
218
252
}
0 commit comments