This is an automated email from the ASF dual-hosted git repository.
totalo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new b465be6caf1 Remove useless throw (#24111)
b465be6caf1 is described below
commit b465be6caf190adb6ee50f286040c86f03bf8c94
Author: Liang Zhang <[email protected]>
AuthorDate: Sat Feb 11 00:38:10 2023 +0800
Remove useless throw (#24111)
---
.../test/e2e/data/pipeline/cases/base/PipelineBaseE2EIT.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/test/e2e/pipeline/src/test/java/org/apache/shardingsphere/test/e2e/data/pipeline/cases/base/PipelineBaseE2EIT.java
b/test/e2e/pipeline/src/test/java/org/apache/shardingsphere/test/e2e/data/pipeline/cases/base/PipelineBaseE2EIT.java
index 13c1a671b82..9aad57418bb 100644
---
a/test/e2e/pipeline/src/test/java/org/apache/shardingsphere/test/e2e/data/pipeline/cases/base/PipelineBaseE2EIT.java
+++
b/test/e2e/pipeline/src/test/java/org/apache/shardingsphere/test/e2e/data/pipeline/cases/base/PipelineBaseE2EIT.java
@@ -355,7 +355,7 @@ public abstract class PipelineBaseE2EIT {
assertTrue("The insert record must exist after the stop", recordExist);
}
- protected void assertGreaterThanOrderTableInitRows(final int
tableInitRows, final String schema) throws SQLException {
+ protected void assertGreaterThanOrderTableInitRows(final int
tableInitRows, final String schema) {
String countSQL = Strings.isNullOrEmpty(schema) ? "SELECT COUNT(*) as
count FROM t_order" : String.format("SELECT COUNT(*) as count FROM %s.t_order",
schema);
Map<String, Object> actual = queryForListWithLog(countSQL).get(0);
log.info("actual count {}", actual.get("count"));