You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Evgeny Stanilovsky (Jira)" <ji...@apache.org> on 2023/04/17 05:55:00 UTC

[jira] [Updated] (IGNITE-18664) Sql. subquery with OFFSET is not supported

     [ https://issues.apache.org/jira/browse/IGNITE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Evgeny Stanilovsky updated IGNITE-18664:
----------------------------------------
    Labels: calcite2-required ignite-3  (was: calcite2-required calcite3-required ignite-3)

> Sql. subquery with OFFSET is not supported
> ------------------------------------------
>
>                 Key: IGNITE-18664
>                 URL: https://issues.apache.org/jira/browse/IGNITE-18664
>             Project: Ignite
>          Issue Type: Bug
>          Components: sql
>    Affects Versions: 3.0.0-beta2
>            Reporter: Maksim Zhuravkov
>            Priority: Major
>              Labels: calcite2-required, ignite-3
>
> The following query is not supported 
> {code:java}
> SELECT i, (WITH i2 AS (SELECT i+i1.i FROM integers LIMIT 1 OFFSET 1) SELECT * FROM i2) AS j FROM integers i1 ORDER BY i;
> {code}
> Expected result:
> {code:java}
> i	j
> 1	3
> 2	4
> 3	5
> null	null
> {code}



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