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

   ## Description
   
   
   Table model cli
   ```
   IoTDB> use db_1
   Msg: The statement is executed successfully.
   IoTDB> insert into t_3(Time, region, code, type, price, s_1, s_2) values(1, 
beijing, a_1, new, low, 1, 1)
   Msg: The statement is executed successfully.
   ```
   
   Tree model cli
   ```
   IoTDB> show timeseries
   
+-----------------------------+-----+---------+--------+--------+-----------+----+----------+--------+------------------+--------+
   |                   Timeseries|Alias| 
Database|DataType|Encoding|Compression|Tags|Attributes|Deadband|DeadbandParameters|ViewType|
   
+-----------------------------+-----+---------+--------+--------+-----------+----+----------+--------+------------------+--------+
   |root.db_1.t_3.beijing.a_1.s_1| null|root.db_1|  DOUBLE| GORILLA|        
LZ4|null|      null|    null|              null|    BASE|
   |root.db_1.t_3.beijing.a_1.s_2| null|root.db_1|  DOUBLE| GORILLA|        
LZ4|null|      null|    null|              null|    BASE|
   
+-----------------------------+-----+---------+--------+--------+-----------+----+----------+--------+------------------+--------+
   Total line number = 2
   It costs 0.096s
   IoTDB> select * from root.db_1.** align by device
   +-----------------------------+-------------------------+---+---+
   |                         Time|                   Device|s_1|s_2|
   +-----------------------------+-------------------------+---+---+
   |1970-01-01T08:00:00.001+08:00|root.db_1.t_3.beijing.a_1|1.0|1.0|
   +-----------------------------+-------------------------+---+---+
   Total line number = 1
   It costs 0.114s
   
   ```


-- 
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