You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ju...@apache.org on 2016/10/03 21:54:20 UTC

arrow git commit: ARROW-314: JSONScalar is unnecessary and unused

Repository: arrow
Updated Branches:
  refs/heads/master 391ab64d0 -> c7b0480f5


ARROW-314: JSONScalar is unnecessary and unused

Author: Julien Le Dem <ju...@dremio.com>

Closes #153 from julienledem/jsonscalar and squashes the following commits:

905027c [Julien Le Dem] ARROW-314: JSONScalar is unnecessary and unused


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/c7b0480f
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/c7b0480f
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/c7b0480f

Branch: refs/heads/master
Commit: c7b0480f5c8dadb78b9586dc4e40f3964929d8ef
Parents: 391ab64
Author: Julien Le Dem <ju...@dremio.com>
Authored: Mon Oct 3 14:54:15 2016 -0700
Committer: Julien Le Dem <ju...@dremio.com>
Committed: Mon Oct 3 14:54:15 2016 -0700

----------------------------------------------------------------------
 format/Message.fbs | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/c7b0480f/format/Message.fbs
----------------------------------------------------------------------
diff --git a/format/Message.fbs b/format/Message.fbs
index 288f5a1..e1758bf 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
 }
 
 /// ----------------------------------------------------------------------