This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 288d8e5 rethrow other exceptions in query main thread (#4579)
288d8e5 is described below
commit 288d8e53cf9035c7682fb471f26c87829d2a8866
Author: Jackie Tien <[email protected]>
AuthorDate: Wed Dec 15 17:54:18 2021 +0800
rethrow other exceptions in query main thread (#4579)
---
.../iotdb/db/query/dataset/RawQueryDataSetWithoutValueFilter.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/server/src/main/java/org/apache/iotdb/db/query/dataset/RawQueryDataSetWithoutValueFilter.java
b/server/src/main/java/org/apache/iotdb/db/query/dataset/RawQueryDataSetWithoutValueFilter.java
index dda903b..52ad327 100644
---
a/server/src/main/java/org/apache/iotdb/db/query/dataset/RawQueryDataSetWithoutValueFilter.java
+++
b/server/src/main/java/org/apache/iotdb/db/query/dataset/RawQueryDataSetWithoutValueFilter.java
@@ -554,6 +554,8 @@ public class RawQueryDataSetWithoutValueFilter extends
QueryDataSet
throw (IOException) exceptionBatchData.getThrowable();
} else if (exceptionBatchData.getThrowable() instanceof
RuntimeException) {
throw (RuntimeException) exceptionBatchData.getThrowable();
+ } else {
+ throw new RuntimeException("some other unknown errors!");
}
} else { // there are more batch data in this time series queue