You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/user-guide/sql/data_types.md
+23-57Lines changed: 23 additions & 57 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,27 +69,32 @@ select arrow_cast(now(), 'Timestamp(Second, None)') as "now()";
69
69
70
70
| SQL DataType | Arrow DataType |
71
71
| ------------ | -------------- |
72
-
|`CHAR`|`Utf8`|
73
-
|`VARCHAR`|`Utf8`|
74
-
|`TEXT`|`Utf8`|
75
-
|`STRING`|`Utf8`|
72
+
|`CHAR`|`Utf8View`|
73
+
|`VARCHAR`|`Utf8View`|
74
+
|`TEXT`|`Utf8View`|
75
+
|`STRING`|`Utf8View`|
76
+
77
+
By default, string types are mapped to `Utf8View`. This can be configured using the `datafusion.sql_parser.map_string_types_to_utf8view` setting. When set to `false`, string types are mapped to `Utf8` instead.
0 commit comments