HTHou opened a new pull request, #9433:
URL: https://github.com/apache/iotdb/pull/9433

   ## Description
   
   To reproduce, insert data like
   
   ```
   insert into root.test.d_01(time,s_01) values(16,1);
   ```
   
   Then execute the following python code
   
   ```python
   from iotdb.Session import Session
   
   session = Session.init_from_node_urls(
       node_urls=["127.0.0.1:6667"],
       user="root",
       password="roo",
       fetch_size=1024,
       zone_id="UTC+8",
   )
   session.open(False)
   
   dataset = session.execute_last_data_query(["root.test.d_01.s_01"], 16)
   print(dataset.has_next())
   print(dataset.get_column_names())
   print(dataset.next())
   
   session.close()
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to