File tree 1 file changed +2
-6
lines changed 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -261,9 +261,7 @@ pub enum DataType {
261
261
/// A single LargeBinary array can store up to [`i64::MAX`] bytes
262
262
/// of binary data in total.
263
263
LargeBinary ,
264
- /// (NOT YET FULLY SUPPORTED) Opaque binary data of variable length.
265
- ///
266
- /// Note this data type is not yet fully supported. Using it with arrow APIs may result in `panic`s.
264
+ /// Opaque binary data of variable length.
267
265
///
268
266
/// Logically the same as [`Self::Binary`], but the internal representation uses a view
269
267
/// struct that contains the string length and either the string's entire data
@@ -280,9 +278,7 @@ pub enum DataType {
280
278
/// A single LargeUtf8 array can store up to [`i64::MAX`] bytes
281
279
/// of string data in total.
282
280
LargeUtf8 ,
283
- /// (NOT YET FULLY SUPPORTED) A variable-length string in Unicode with UTF-8 encoding
284
- ///
285
- /// Note this data type is not yet fully supported. Using it with arrow APIs may result in `panic`s.
281
+ /// A variable-length string in Unicode with UTF-8 encoding
286
282
///
287
283
/// Logically the same as [`Self::Utf8`], but the internal representation uses a view
288
284
/// struct that contains the string length and either the string's entire data
You can’t perform that action at this time.
0 commit comments