This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch DL
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/DL by this push:
new 9a32ac94bbe ancient-IT
9a32ac94bbe is described below
commit 9a32ac94bbe620bb160d3d1121556212bdb38a53
Author: Caideyipi <[email protected]>
AuthorDate: Mon Dec 15 15:15:13 2025 +0800
ancient-IT
---
.../java/org/apache/iotdb/relational/it/schema/IoTDBTableIT.java | 6 ++++++
1 file changed, 6 insertions(+)
diff --git
a/integration-test/src/test/java/org/apache/iotdb/relational/it/schema/IoTDBTableIT.java
b/integration-test/src/test/java/org/apache/iotdb/relational/it/schema/IoTDBTableIT.java
index c1c421ce57f..753ff5fa42b 100644
---
a/integration-test/src/test/java/org/apache/iotdb/relational/it/schema/IoTDBTableIT.java
+++
b/integration-test/src/test/java/org/apache/iotdb/relational/it/schema/IoTDBTableIT.java
@@ -1098,6 +1098,12 @@ public class IoTDBTableIT {
} catch (final SQLException e) {
assertEquals("701: The system view does not support show create.",
e.getMessage());
}
+ try {
+ statement.execute("show create table information_schema.tables");
+ fail();
+ } catch (final SQLException e) {
+ assertEquals("701: The system view does not support show create.",
e.getMessage());
+ }
try {
statement.execute("create or replace view a () as root.b.**");
fail();