From 905027cdd561887def3bb7bd5ebbdbd070925328 Mon Sep 17 00:00:00 2001 From: Julien Le Dem Date: Mon, 3 Oct 2016 14:32:40 -0700 Subject: [PATCH] ARROW-314: JSONScalar is unnecessary and unused --- format/Message.fbs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/format/Message.fbs b/format/Message.fbs index 288f5a1b6b2..e1758bf3638 100644 --- a/format/Message.fbs +++ b/format/Message.fbs @@ -73,10 +73,6 @@ table Interval { unit: IntervalUnit; } -table JSONScalar { - dense:bool=true; -} - /// ---------------------------------------------------------------------- /// Top-level Type value, enabling extensible type-specific metadata. We can /// add new logical types to Type without breaking backwards compatibility @@ -95,8 +91,7 @@ union Type { Interval, List, Struct_, - Union, - JSONScalar + Union } /// ----------------------------------------------------------------------