This is an automated email from the ASF dual-hosted git repository.

jiangtian pushed a commit to branch fix_null_timestamp
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/fix_null_timestamp by this 
push:
     new ede5c4701fe spotless
ede5c4701fe is described below

commit ede5c4701fefee804817fe8bf01c31dd31e84501
Author: Tian Jiang <[email protected]>
AuthorDate: Mon Mar 24 16:50:22 2025 +0800

    spotless
---
 .../relational/it/session/IoTDBSessionRelationalIT.java      | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git 
a/integration-test/src/test/java/org/apache/iotdb/relational/it/session/IoTDBSessionRelationalIT.java
 
b/integration-test/src/test/java/org/apache/iotdb/relational/it/session/IoTDBSessionRelationalIT.java
index 2a7508a2013..7d89b5efee6 100644
--- 
a/integration-test/src/test/java/org/apache/iotdb/relational/it/session/IoTDBSessionRelationalIT.java
+++ 
b/integration-test/src/test/java/org/apache/iotdb/relational/it/session/IoTDBSessionRelationalIT.java
@@ -267,25 +267,19 @@ public class IoTDBSessionRelationalIT {
         session.executeNonQueryStatement("insert into wrong_time 
values(1+1,'bb','cc','dd')");
         fail("No exception thrown");
       } catch (StatementExecutionException e) {
-        assertEquals(
-            "701: Unsupported expression: (1 + 1)",
-            e.getMessage());
+        assertEquals("701: Unsupported expression: (1 + 1)", e.getMessage());
       }
       try {
         session.executeNonQueryStatement("insert into wrong_time 
values(1.0,'bb','cc','dd')");
         fail("No exception thrown");
       } catch (StatementExecutionException e) {
-        assertEquals(
-            "701: Unsupported expression: 1E0",
-            e.getMessage());
+        assertEquals("701: Unsupported expression: 1E0", e.getMessage());
       }
       try {
         session.executeNonQueryStatement("insert into wrong_time 
values(true,'bb','cc','dd')");
         fail("No exception thrown");
       } catch (StatementExecutionException e) {
-        assertEquals(
-            "701: Unsupported expression: true",
-            e.getMessage());
+        assertEquals("701: Unsupported expression: true", e.getMessage());
       }
       session.executeNonQueryStatement("drop table wrong_time");
     }

Reply via email to