Skip to content

Commit b58ff00

Browse files
committed
Fix IT
1 parent dff9a24 commit b58ff00

File tree

1 file changed

+3
-1
lines changed
  • integration-test/src/test/java/org/apache/iotdb/relational/it/schema

1 file changed

+3
-1
lines changed

integration-test/src/test/java/org/apache/iotdb/relational/it/schema/IoTDBTableIT.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,9 @@ private void testObject4SingleIllegalPath(final String illegal) throws Exception
884884
statement.execute(String.format("insert into test (a, b, c) values ('%s', 1, 1)", illegal));
885885
try {
886886
statement.execute(
887-
String.format("insert into test (a, b, c, d) values ('%s', 1, 1, 's')", illegal));
887+
String.format(
888+
"insert into test (a, b, c, d) values ('%s', 1, 1, to_object(true, 0, X'aa'))",
889+
illegal));
888890
fail();
889891
} catch (final SQLException e) {
890892
Assert.assertEquals(

0 commit comments

Comments
 (0)