From df76c0bc86d9723816912d4d7d97424ba0bd5c91 Mon Sep 17 00:00:00 2001 From: Haonan Date: Fri, 15 Nov 2024 07:28:24 +0800 Subject: [PATCH] Update SessionPoolTest.cs --- samples/Apache.IoTDB.Samples/SessionPoolTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/Apache.IoTDB.Samples/SessionPoolTest.cs b/samples/Apache.IoTDB.Samples/SessionPoolTest.cs index 302a840..0c4c552 100644 --- a/samples/Apache.IoTDB.Samples/SessionPoolTest.cs +++ b/samples/Apache.IoTDB.Samples/SessionPoolTest.cs @@ -472,6 +472,7 @@ await session_pool.ExecuteNonQueryStatementAsync( res = await session_pool.ExecuteQueryStatementAsync( "select status, temperature, hardware from " + string.Format("{0}.{1}", test_group_name, test_device) + " where time<10"); res.ShowTableNames(); + Console.WriteLine(res.ShowTableNames()); while (res.HasNext()) Console.WriteLine(res.Next()); await res.Close();