You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2019/11/04 08:20:28 UTC

[GitHub] [incubator-iotdb] jixuan1989 commented on issue #519: [IOTDB-257] make client do not to waste of resources

jixuan1989 commented on issue #519: [IOTDB-257] make client do not to waste of resources
URL: https://github.com/apache/incubator-iotdb/pull/519#issuecomment-549256630
 
 
   Hi, 
   
   > i think in print Reach maxPrintRowCount = 1000 lines , do not to print Total line number = %s
   
   It makes sense. Have you fixed?
   
   e.g., the wanted output is:
   ```
   IoTDB> select * from root
   select * from root
   +-----------------------------------+--------------+--------------+--------------+
   |                               Time|root.sg1.d1.s1|root.sg1.d1.s2|root.sg1.d1.s3|
   +-----------------------------------+--------------+--------------+--------------+
   |      1970-01-01T08:00:00.000+08:00|             1|             1|             1|
   |      1970-01-01T08:00:00.001+08:00|             1|             1|             1|
   ......
   +-----------------------------------+--------------+--------------+--------------+
   Reach maxPrintRowCount = 1000 lines
   It costs 3.524s
   ```
   Or
   
   ```
   IoTDB> select * from root
   select * from root
   +-----------------------------------+--------------+--------------+--------------+
   |                               Time|root.sg1.d1.s1|root.sg1.d1.s2|root.sg1.d1.s3|
   +-----------------------------------+--------------+--------------+--------------+
   |      1970-01-01T08:00:00.000+08:00|             1|             1|             1|
   |      1970-01-01T08:00:00.001+08:00|             1|             1|             1|
   ......
   +-----------------------------------+--------------+--------------+--------------+
   Total line number = 899 
   It costs 3.524s
   ```
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services