Skip to content

Commit 89c94e6

Browse files
committed
addresses comments
1 parent 550530c commit 89c94e6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/test/java/com/databricks/jdbc/integration/e2e/LargeQueryExecutionTests.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,9 @@ void testQueryYieldingLargeWideResultSet() throws SQLException {
3636

3737
// Create the SQL query
3838
String query = String.format("SELECT id, %s FROM RANGE(%d)", uuids, rows);
39-
System.out.println("query: " + query);
4039
ResultSet rs = executeQuery(query);
4140
int rowCount = 0;
4241
while (rs != null && rs.next()) {
43-
System.out.println("check");
4442
assertEquals(rs.getInt("id"), rowCount, "Expected id to be equal to row number");
4543
assertEquals(rs.getString("uuid0").length(), 36, "Expected UUID length of 36");
4644
rowCount++;

0 commit comments

Comments
 (0)