We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d53e2 commit 63c933aCopy full SHA for 63c933a
src/datasets/features/features.py
@@ -106,6 +106,8 @@ def _arrow_to_datasets_dtype(arrow_type: pa.DataType) -> str:
106
return "binary"
107
elif pyarrow.types.is_large_binary(arrow_type):
108
return "large_binary"
109
+ elif pyarrow.types.is_binary_view(arrow_type):
110
+ return "binary_view"
111
elif pyarrow.types.is_string(arrow_type):
112
return "string"
113
elif pyarrow.types.is_large_string(arrow_type):
@@ -508,6 +510,7 @@ class Value:
508
510
- `decimal256(precision, scale)`
509
511
- `binary`
512
- `large_binary`
513
+ - `binary_view`
514
- `string`
515
- `large_string`
516
- `string_view`
0 commit comments