You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "duan xiong (Jira)" <ji...@apache.org> on 2021/12/18 01:28:00 UTC

[jira] [Commented] (CALCITE-4860) In Elasticsearch adapter, support NULLS FIRST and NULLS LAST query

    [ https://issues.apache.org/jira/browse/CALCITE-4860?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17461745#comment-17461745 ] 

duan xiong commented on CALCITE-4860:
-------------------------------------

Removing fixVersion=1.29.0. The PR is not ready.

> In Elasticsearch adapter, support NULLS FIRST and NULLS LAST query
> ------------------------------------------------------------------
>
>                 Key: CALCITE-4860
>                 URL: https://issues.apache.org/jira/browse/CALCITE-4860
>             Project: Calcite
>          Issue Type: Bug
>          Components: elasticsearch-adapter
>    Affects Versions: 1.27.0
>            Reporter: duan xiong
>            Assignee: ZheHu
>            Priority: Major
>             Fix For: 1.29.0
>
>
> In Elasticsearch Adapter, The SQL:
> {code:java}
> @Test void integerCat3() {
>   CalciteAssert.that()
>       .with(newConnectionFactory())
>       .query("select cat1 from view order by cat1 nulls first")
>       .returns("cat1=a\n" +
>           "cat1=b\n" +
>           "cat1=null\n");
> }
> {code}
> NULLS FIRST don't handle.
> According  [es_missing_values|https://www.elastic.co/guide/en/elasticsearch/reference/current/sort-search-results.html#_missing_values] . We can add another parameter in the script to implement this.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)