Skip to content

Commit d6ce9b7

Browse files
wlx5575wangleixin1
authored andcommitted
fix ci
1 parent 2d18059 commit d6ce9b7

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

src/test/java/testsuite/TestSuite.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -113,24 +113,6 @@ protected static <T extends TestSuiteCase> List<T> iterateExecFile(String filena
113113
return testCaseList;
114114
}
115115

116-
public static void printResult(ResultSet resultSet) throws SQLException {
117-
ResultSetMetaData metaData = resultSet.getMetaData();
118-
int columnCount = metaData.getColumnCount();
119-
for (int i = 0; i < columnCount; i++) {
120-
System.out.print(metaData.getColumnLabel(i + 1) + " ");
121-
}
122-
System.out.println();
123-
int count = 0;
124-
while (resultSet.next()) {
125-
for (int i = 0; i < columnCount; i++) {
126-
System.out.print(resultSet.getObject(i + 1) + " ");
127-
}
128-
count++;
129-
System.out.println();
130-
}
131-
System.out.println("count:" + count);
132-
}
133-
134116
protected static String getConnectionUrl(TestSuiteEnv env) {
135117
return env.getDevConnectionUrl();
136118
}

0 commit comments

Comments
 (0)