You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by GitBox <gi...@apache.org> on 2019/01/27 20:42:24 UTC

[GitHub] paul-rogers opened a new pull request #1624: DRILL-7007: Use verify method in row set tests

paul-rogers opened a new pull request #1624: DRILL-7007: Use verify method in row set tests
URL: https://github.com/apache/drill/pull/1624
 
 
   Many of the early RowSet-based tests used the pattern:
   
   ```
       new RowSetComparison(expected)
         .verifyAndClearAll(result);
   ```
   
   Revise this to use the simplified form:
   
   ```
       RowSetUtilities.verify(expected, result);
   ```
   
   The original form is retained when tests use additional functionality, such as the ability to perform multiple verifications on the same expected batch.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services