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();