[
https://issues.apache.org/jira/browse/IGNITE-15605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Evgeny Stanilovsky updated IGNITE-15605:
----------------------------------------
Description:
{noformat}
statement ok
CREATE TABLE integers(i INTEGER)
statement ok
INSERT INTO integers VALUES (1), (2), (3), (NULL)
query R
SELECT (SELECT SUM(i1.i)) FROM integers i1;
----
6.000000
{noformat}
{noformat}
/subquery/scalar/test_correlated_aggregate_subquery.test_ignore
/subquery/scalar/test_varchar_correlated_subquery.test_ignore
{noformat}
was:
{noformat}
statement ok
CREATE TABLE integers(i INTEGER)
statement ok
INSERT INTO integers VALUES (1), (2), (3), (NULL)
query R
SELECT (SELECT SUM(i1.i)) FROM integers i1;
----
6.000000
{noformat}
{noformat}
/subquery/scalar/test_correlated_aggregate_subquery.test_ignore
{noformat}
> Calcite. Unexpected result with aggregate inside subquery.
> ----------------------------------------------------------
>
> Key: IGNITE-15605
> URL: https://issues.apache.org/jira/browse/IGNITE-15605
> Project: Ignite
> Issue Type: Bug
> Components: sql
> Reporter: Evgeny Stanilovsky
> Priority: Major
> Labels: calcite, calcite2-required, calcite3-required, ignite-3
>
> {noformat}
> statement ok
> CREATE TABLE integers(i INTEGER)
> statement ok
> INSERT INTO integers VALUES (1), (2), (3), (NULL)
> query R
> SELECT (SELECT SUM(i1.i)) FROM integers i1;
> ----
> 6.000000
> {noformat}
> {noformat}
> /subquery/scalar/test_correlated_aggregate_subquery.test_ignore
> /subquery/scalar/test_varchar_correlated_subquery.test_ignore
> {noformat}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)