This is an automated email from the ASF dual-hosted git repository. hui pushed a commit to branch lmh/extendGroupByLevel in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 86b452389cb119999161e3ec7061a955ecbbcca4 Author: Minghui Liu <[email protected]> AuthorDate: Mon Oct 3 23:43:52 2022 +0800 remove redundant exception --- .../java/org/apache/iotdb/db/it/aligned/IoTDBGroupByLevelQueryIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-test/src/test/java/org/apache/iotdb/db/it/aligned/IoTDBGroupByLevelQueryIT.java b/integration-test/src/test/java/org/apache/iotdb/db/it/aligned/IoTDBGroupByLevelQueryIT.java index 65300100e1..c7b351c23e 100644 --- a/integration-test/src/test/java/org/apache/iotdb/db/it/aligned/IoTDBGroupByLevelQueryIT.java +++ b/integration-test/src/test/java/org/apache/iotdb/db/it/aligned/IoTDBGroupByLevelQueryIT.java @@ -200,7 +200,7 @@ public class IoTDBGroupByLevelQueryIT { } @Test - public void timeFuncGroupByLevelTest() throws ClassNotFoundException { + public void timeFuncGroupByLevelTest() { double[][] retArray1 = new double[][] {{1, 40, 1, 30}}; String[] columnNames1 = { "min_time(root.*.d1.s3)", @@ -213,7 +213,7 @@ public class IoTDBGroupByLevelQueryIT { } @Test - public void valueFuncGroupByLevelTest() throws ClassNotFoundException { + public void valueFuncGroupByLevelTest() { double[][] retArray1 = new double[][] {{40, 230000, 30, 30}}; String[] columnNames1 = { "last_value(root.*.d1.s3)",
