Ritik Raj created ASTERIXDB-3626:
------------------------------------

             Summary: Restrict array comparison in filter pushdown
                 Key: ASTERIXDB-3626
                 URL: https://issues.apache.org/jira/browse/ASTERIXDB-3626
             Project: Apache AsterixDB
          Issue Type: Bug
          Components: COMP - Compiler
    Affects Versions: 0.9.10
            Reporter: Ritik Raj
            Assignee: Ritik Raj
             Fix For: 0.9.10


{code:java}
create collection col1 primary key (id: string);

insert into col1 (
    [
        {"id": "1", "data": [1,2,3]},
        {"id": "2", "data": ["a", "b", "c"]},
        {"id": "3", "data": [1, "a", true]}
    ]
);

select * from col1 where data = [1, "a", true];
// No output {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to