Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Won't Fix
-
None
-
None
Description
git.commit.id.abbrev=98b208e
JSON File Used :
{ "a" : null, "b" : 1 }
Query :
select * from `temp.json`; +------------+ | b | +------------+ | 1 | +------------+
However for the below data set it works fine
{ "a" : null, "b" : 1 } { "a" : 1, "b" : null }
Query :
select * from `temp.json`; +------------+------------+ | b | a | +------------+------------+ | 1 | null | | null | 1 | +------------+------------+