[
https://issues.apache.org/jira/browse/CALCITE-6298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
hongyu guo updated CALCITE-6298:
--------------------------------
Description:
Query
{code:sql}
(select "intField"
from arrowdata
where "intField" = 2)
union
(select "intField"
from arrowdata
where "intField" = 1)
{code}
should return
{code}
1
2
{code}
but return
{code:java}
1
{code}
See org.apache.calcite.adapter.arrow.ArrowAdapterTest#testArrowUnion
> Support UNION in arrow adapter
> ------------------------------
>
> Key: CALCITE-6298
> URL: https://issues.apache.org/jira/browse/CALCITE-6298
> Project: Calcite
> Issue Type: Sub-task
> Reporter: hongyu guo
> Priority: Major
>
> Query
> {code:sql}
> (select "intField"
> from arrowdata
> where "intField" = 2)
> union
> (select "intField"
> from arrowdata
> where "intField" = 1)
> {code}
> should return
> {code}
> 1
> 2
> {code}
> but return
> {code:java}
> 1
> {code}
> See org.apache.calcite.adapter.arrow.ArrowAdapterTest#testArrowUnion
--
This message was sent by Atlassian Jira
(v8.20.10#820010)