Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
1.1.0
-
None
Description
Given the data :
{"some":"yes","others":{"other":"true","all":"false","sometimes":"yes"}}
{"some":"yes","others":{"other":"true","all":"false","sometimes":"yes","additional":"last entries only"}}
The query
select `some`, t.others, t.others.additional from `test.json` t;
produces incorrect results -
yes | {"additional":"last entries only"} | last entries only |
instead of
yes | {"other":"true","all":"false","sometimes":"yes","additional":"last entries only"} | last entries only |
Attachments
Issue Links
- relates to
-
DRILL-3476 Filter on nested element gives wrong results
- Closed