We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd3179 commit 5eb9b87Copy full SHA for 5eb9b87
integ-test/src/test/java/org/opensearch/sql/jdbc/CursorIT.java
@@ -111,8 +111,8 @@ public void select_all_no_cursor() {
111
var query = String.format("SELECT * FROM %s", table);
112
ResultSet rs = stmt.executeQuery(query);
113
int rows = 0;
114
- for (; rs.next(); rows++)
115
- ;
+ while(rs.next())
+ rows++;
116
117
var restResponse = executeRestQuery(query, null);
118
assertEquals(rows, restResponse.getInt("total"));
integ-test/src/test/java/org/opensearch/sql/sql/DateTimeImplementationIT.java
@@ -7,7 +7,6 @@
7
8
import org.junit.Test;
9
import org.opensearch.sql.legacy.SQLIntegTestCase;
10
-
11
import java.io.IOException;
12
13
import static org.opensearch.sql.util.MatcherUtils.rows;
0 commit comments