You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Paul Rogers (JIRA)" <ji...@apache.org> on 2019/01/27 18:37:00 UTC

[jira] [Created] (DRILL-7007) Revise row-set based tests to use simplified verify method

Paul Rogers created DRILL-7007:
----------------------------------

             Summary: Revise row-set based tests to use simplified verify method
                 Key: DRILL-7007
                 URL: https://issues.apache.org/jira/browse/DRILL-7007
             Project: Apache Drill
          Issue Type: Improvement
    Affects Versions: 1.15.0
            Reporter: Paul Rogers
            Assignee: Paul Rogers
             Fix For: 1.16.0


Many of the early RowSet-based tests used the pattern:

{code:java}
    new RowSetComparison(expected)
      .verifyAndClearAll(result);
{code}

Revise this to use the simplified form:

{code:java}
    RowSetUtilities.verify(expected, result);
{code}

The original form is retained when tests use additional functionality, such as the ability to perform multiple verifications on the same expected batch.



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