From 1cada12f4e171a05561da745cf4529c7e024df32 Mon Sep 17 00:00:00 2001 From: Julien Le Dem Date: Thu, 11 Aug 2016 10:11:18 -0700 Subject: [PATCH] ARROW-254: remove Bit type --- cpp/src/arrow/ipc/metadata-internal.cc | 2 -- format/Message.fbs | 4 ---- 2 files changed, 6 deletions(-) diff --git a/cpp/src/arrow/ipc/metadata-internal.cc b/cpp/src/arrow/ipc/metadata-internal.cc index 1b1d50f96ea..5c439120b17 100644 --- a/cpp/src/arrow/ipc/metadata-internal.cc +++ b/cpp/src/arrow/ipc/metadata-internal.cc @@ -99,8 +99,6 @@ static Status TypeFromFlatbuffer(flatbuf::Type type, const void* type_data, return Status::Invalid("Type metadata cannot be none"); case flatbuf::Type_Int: return IntFromFlatbuffer(static_cast(type_data), out); - case flatbuf::Type_Bit: - return Status::NotImplemented("Type is not implemented"); case flatbuf::Type_FloatingPoint: return FloatFromFlatuffer( static_cast(type_data), out); diff --git a/format/Message.fbs b/format/Message.fbs index fc849eedf79..e0a956c3b25 100644 --- a/format/Message.fbs +++ b/format/Message.fbs @@ -20,9 +20,6 @@ table Union { mode: UnionMode; } -table Bit { -} - table Int { bitWidth: int; // 1 to 64 is_signed: bool; @@ -62,7 +59,6 @@ table JSONScalar { union Type { Int, - Bit, FloatingPoint, Binary, Utf8,