This is an automated email from the ASF dual-hosted git repository. bkietz pushed a commit to branch feature/format-string-view in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 5c8a6ecb8c8747ec425a019cfa5c6084be04da0e Author: Tobias Zagorni <[email protected]> AuthorDate: Tue Oct 18 17:18:02 2022 +0200 add StringView/BinaryView to AllTypeIds --- cpp/src/arrow/type.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpp/src/arrow/type.cc b/cpp/src/arrow/type.cc index b976260ccd..becd0c0c62 100644 --- a/cpp/src/arrow/type.cc +++ b/cpp/src/arrow/type.cc @@ -129,6 +129,8 @@ std::vector<Type::type> AllTypeIds() { Type::BINARY, Type::LARGE_STRING, Type::LARGE_BINARY, + Type::STRING_VIEW, + Type::BINARY_VIEW, Type::FIXED_SIZE_BINARY, Type::STRUCT, Type::LIST,
