File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -261,9 +261,7 @@ pub enum DataType {
261261 /// A single LargeBinary array can store up to [`i64::MAX`] bytes
262262 /// of binary data in total.
263263 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.
267265 ///
268266 /// Logically the same as [`Self::Binary`], but the internal representation uses a view
269267 /// struct that contains the string length and either the string's entire data
@@ -280,9 +278,7 @@ pub enum DataType {
280278 /// A single LargeUtf8 array can store up to [`i64::MAX`] bytes
281279 /// of string data in total.
282280 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
286282 ///
287283 /// Logically the same as [`Self::Utf8`], but the internal representation uses a view
288284 /// 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