From 9b9a60b5ce23d5768064f4da3df5469458e80e9e Mon Sep 17 00:00:00 2001 From: Konstantin Druzhkin Date: Tue, 6 Aug 2024 17:22:28 +0300 Subject: [PATCH] docs: Mention 'Array' in data types overview --- docs/user-guide/concepts/data-types/overview.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/user-guide/concepts/data-types/overview.md b/docs/user-guide/concepts/data-types/overview.md index 86c705605031..184c3a697615 100644 --- a/docs/user-guide/concepts/data-types/overview.md +++ b/docs/user-guide/concepts/data-types/overview.md @@ -18,6 +18,7 @@ from Arrow, with the exception of `String` (this is actually `LargeUtf8`), `Cate | | `Float64` | 64-bit floating point. | | Nested | `Struct` | A struct array is represented as a `Vec` and is useful to pack multiple/heterogeneous values in a single column. | | | `List` | A list array contains a child array containing the list values and an offset array. (this is actually Arrow `LargeList` internally). | +| | `Array` | A fixed-length homogeneous array. | | Temporal | `Date` | Date representation, internally represented as days since UNIX epoch encoded by a 32-bit signed integer. | | | `Datetime` | Datetime representation, internally represented as microseconds since UNIX epoch encoded by a 64-bit signed integer. | | | `Duration` | A timedelta type, internally represented as microseconds. Created when subtracting `Date/Datetime`. |