Dmitry Lychagin created ASTERIXDB-2529:
------------------------------------------
Summary: Incorrect query result for record constructor with
MISSING value
Key: ASTERIXDB-2529
URL: https://issues.apache.org/jira/browse/ASTERIXDB-2529
Project: Apache AsterixDB
Issue Type: Bug
Components: COMP - Compiler
Reporter: Dmitry Lychagin
Assignee: Dmitry Lychagin
Query
{noformat}
FROM [{'a_a': 9, 'bb': missing, 'c': 33}] v SELECT v;
{noformat}
returns incorrect result:
{noformat}
{ "v": { "a_a": 9, "c": 9 } }
{noformat}
It should return
{noformat}
{ "v": { "a_a": 9, "c": 33 } }
{noformat}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)