You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2015/05/28 03:56:17 UTC

[jira] [Commented] (TAJO-1627) Rest API should support this type of query "select 1"

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

ASF GitHub Bot commented on TAJO-1627:
--------------------------------------

GitHub user charsyam opened a pull request:

    https://github.com/apache/tajo/pull/590

    TAJO-1627 Rest API should support this type of query "select 1"

    Currently, Tajo Rest API supports well "select * from table" or "select count from table" <-- normal type
    but, Tajo Rest API couldn't support this type of query like "select 1" <-- direct return type
    to solve this, queries api should support resultset also.
    so I suggest this.
    queries return 201 Created when it is normal type of query
    and query is direct query type and return 200 with result
    like this (direct return type)
    {"resultCode":"OK","schema":{"fields":[{"name":"?number","typeDesc":{"dataType":
    {"type":"INT4"}
    }}],"fieldsByQualifiedName":
    {"?number":0}
    ,"fieldsByName":{"?number":[0]}},"serializedTupes":["AAAAAAE\u003d"]}

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/charsyam/tajo feature/query-with-direct-return

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/tajo/pull/590.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #590
    
----
commit cd84bbe57a04a5a52e49768a232d104d42d79c56
Author: clark.kang <cl...@kakao.com>
Date:   2015-05-28T01:54:07Z

    TAJO-1627

----


> Rest API should support this type of query "select 1"
> -----------------------------------------------------
>
>                 Key: TAJO-1627
>                 URL: https://issues.apache.org/jira/browse/TAJO-1627
>             Project: Tajo
>          Issue Type: Bug
>            Reporter: DaeMyung Kang
>            Assignee: DaeMyung Kang
>
> Currently, Tajo Rest API supports well "select * from table" or "select count(*) from table" <-- normal type
> but, Tajo Rest API couldn't support this type of query like "select 1" <-- direct return type
> to solve this, queries api should support resultset also.
> so I suggest this.
> queries return 201 Created when it is normal type of query
> and query is direct query type and return 200 with result
> like this (direct return type)
> {"resultCode":"OK","schema":{"fields":[{"name":"?number","typeDesc":{"dataType":{"type":"INT4"}}}],"fieldsByQualifiedName":{"?number":0},"fieldsByName":{"?number":[0]}},"serializedTupes":["AAAAAAE\u003d"]}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)