This is an automated email from the ASF dual-hosted git repository. shuwenwei pushed a commit to branch showAvailableUrls in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 86fb0ae73166f2c13236fa68958e97c0616c3dd7 Author: shuwenwei <[email protected]> AuthorDate: Thu Sep 18 19:03:35 2025 +0800 add test --- .../src/test/java/org/apache/iotdb/db/it/auth/IoTDBAuthIT.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-test/src/test/java/org/apache/iotdb/db/it/auth/IoTDBAuthIT.java b/integration-test/src/test/java/org/apache/iotdb/db/it/auth/IoTDBAuthIT.java index c15d84651df..046ebc1a4f0 100644 --- a/integration-test/src/test/java/org/apache/iotdb/db/it/auth/IoTDBAuthIT.java +++ b/integration-test/src/test/java/org/apache/iotdb/db/it/auth/IoTDBAuthIT.java @@ -51,6 +51,7 @@ import java.util.Set; import java.util.concurrent.Callable; import static org.apache.iotdb.db.it.utils.TestUtils.createUser; +import static org.apache.iotdb.db.it.utils.TestUtils.executeNonQuery; import static org.apache.iotdb.db.it.utils.TestUtils.resultSetEqualTest; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; @@ -1422,6 +1423,7 @@ public class IoTDBAuthIT { "tempuser,", }; resultSetEqualTest("show current_user", expectedHeader, retArray, "tempuser", "temppw123456"); + executeNonQuery("SHOW AVAILABLE URLS", "tempuser", "temppw123456"); } @Ignore
