Skip to content

Commit 791fc20

Browse files
committed
Remove "NOT YET FULLY SUPPORTED" comment from DataType::Utf8View/BinaryView
1 parent 1aa066e commit 791fc20

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

arrow-schema/src/datatype.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)