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

Hamed Madani commented on HBASE-8823:
-------------------------------------

[~larsgeorge] As far as I undrestand , since thrift2 stores it's results in 
List,  results are sorted.

from *ThriftUtilities.java*
{code}
  public static List<TResult> resultsFromHBase(Result[] in) {
    List<TResult> out = new ArrayList<TResult>(in.length);
    for (Result result : in) {
      out.add(resultFromHBase(result));
    }
    return out;
  }
{code} 
                
> Ensure HBASE-7826 is covered by Thrift 2
> ----------------------------------------
>
>                 Key: HBASE-8823
>                 URL: https://issues.apache.org/jira/browse/HBASE-8823
>             Project: HBase
>          Issue Type: Sub-task
>          Components: Thrift
>            Reporter: Lars George
>              Labels: thrift2
>
> HBASE-7826 is about sorted results, we need to check if Thrift 2 handles this 
> as well.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to