This is an automated email from the ASF dual-hosted git repository. jackietien pushed a commit to branch RethrowMaster in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 84a2d98874991b0a678bc9fe73d4f0414dda5e63 Author: JackieTien97 <[email protected]> AuthorDate: Wed Dec 15 14:21:54 2021 +0800 rethrow other exceptions in query main thread --- .../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
