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

Tim Armstrong updated IMPALA-558:
---------------------------------
    Labels: query-lifecycle  (was: )

> HS2::FetchResults sets hasMoreRows on first call even when 0 rows are returned
> ------------------------------------------------------------------------------
>
>                 Key: IMPALA-558
>                 URL: https://issues.apache.org/jira/browse/IMPALA-558
>             Project: IMPALA
>          Issue Type: Bug
>          Components: Clients
>    Affects Versions: Impala 1.1
>            Reporter: Henry Robinson
>            Assignee: Alexander Behm
>            Priority: Minor
>              Labels: query-lifecycle
>
> The first call to {{FetchResults}} always sets {{hasMoreRows}} even when 0 
> rows should be returned. The next call correctly sets {{hasMoreRows == 
> False}}. The upshot is there's always an extra round-trip, although 
> correctness isn't affected.
> {code}
>     execute_statement_req = TCLIService.TExecuteStatementReq()
>     execute_statement_req.sessionHandle = resp.sessionHandle
>     execute_statement_req.statement = "SELECT COUNT(*) FROM 
> functional.alltypes WHERE 1 = 2"
>     execute_statement_resp = 
> self.hs2_client.ExecuteStatement(execute_statement_req)
>     
>     fetch_results_req = TCLIService.TFetchResultsReq()
>     fetch_results_req.operationHandle = execute_statement_resp.operationHandle
>     fetch_results_req.maxRows = 100
>     fetch_results_resp = self.hs2_client.FetchResults(fetch_results_req)
>     
>     assert not fetch_results_resp.hasMoreRows # Fails
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-all-unsubscr...@impala.apache.org
For additional commands, e-mail: issues-all-h...@impala.apache.org

Reply via email to