This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a commit to branch fix_one_column_insertion
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/fix_one_column_insertion by
this push:
new 65a9c7de29e spotless
65a9c7de29e is described below
commit 65a9c7de29e660d5166b04925128187eee35d3e0
Author: Tian Jiang <[email protected]>
AuthorDate: Tue Aug 20 10:17:47 2024 +0800
spotless
---
.../java/org/apache/iotdb/relational/it/db/it/IoTDBInsertTableIT.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/integration-test/src/test/java/org/apache/iotdb/relational/it/db/it/IoTDBInsertTableIT.java
b/integration-test/src/test/java/org/apache/iotdb/relational/it/db/it/IoTDBInsertTableIT.java
index a0e7361dff4..f4d51e86ecb 100644
---
a/integration-test/src/test/java/org/apache/iotdb/relational/it/db/it/IoTDBInsertTableIT.java
+++
b/integration-test/src/test/java/org/apache/iotdb/relational/it/db/it/IoTDBInsertTableIT.java
@@ -724,7 +724,9 @@ public class IoTDBInsertTableIT {
try {
st1.execute("insert into sg21(time) values(1)");
} catch (SQLException e) {
- assertEquals("305: [INTERNAL_SERVER_ERROR(305)] Exception occurred:
\"insert into sg21(time) values(1)\". executeStatement failed. No column other
than Time present, please check the request", e.getMessage());
+ assertEquals(
+ "305: [INTERNAL_SERVER_ERROR(305)] Exception occurred: \"insert
into sg21(time) values(1)\". executeStatement failed. No column other than Time
present, please check the request",
+ e.getMessage());
}
// only attribute
st1.execute("insert into sg21(ss1) values('1')");