Skip to content

Commit

Permalink
Remove some debugging printlns from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Jul 19, 2024
1 parent 08eb057 commit c24aab3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@
public class TestingPageSourceProvider
implements ConnectorPageSourceProvider
{
public TestingPageSourceProvider()
{
System.out.println();
}

@Override
public ConnectorPageSource createPageSource(
ConnectorTransactionHandle transactionHandle,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ public void setup()
"(MAP(ARRAY[2, nan(), 1], ARRAY[200, nan(), 100]), MAP(ARRAY[REAL '2', CAST(nan() AS REAL), REAL '1'], ARRAY[REAL '200', CAST(nan() AS REAL), REAL '100'])), " +
"(MAP(ARRAY[2, 1, nan()], ARRAY[200, 100, nan()]), MAP(ARRAY[REAL '2', REAL '1', CAST(nan() AS REAL)], ARRAY[REAL '200', REAL '100', CAST(nan() AS REAL)]))) " +
"AS t(" + DOUBLE_MAP_COLUMN + ", " + REAL_MAP_COLUMN + ")";
System.out.println(createMapTableQuery);
assertUpdate(createMapTableQuery, 3);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public void testSucceeded()

event = runVerification(query, query);
assertTrue(event.isPresent());
System.out.println(event.get().getErrorMessage());
assertEvent(event.get(), SUCCEEDED, Optional.of(MATCH), false);

getQueryRunner().execute("DROP TABLE like_table");
Expand All @@ -79,7 +78,6 @@ public void testControlNotParsable()

Optional<VerifierQueryEvent> event = verify(getSourceQuery(query, query), false, prestoAction);
assertTrue(event.isPresent());
System.out.println(event.get().getErrorMessage());
assertEvent(event.get(), FAILED, Optional.of(CONTROL_NOT_PARSABLE), false);
}

Expand Down

0 comments on commit c24aab3

Please sign in to comment.