Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
2022-3-Tian
Description
E.g.
IoTDB> select * from root.sg1.d1 +----+--------------+--------------+--------------+ |Time|root.sg1.d1.s1|root.sg1.d1.s2|root.sg1.d1.s3| +----+--------------+--------------+--------------+ | 0| 1| 2| 3| | 1| null| 2| 3| | 2| 1| null| 3| | 3| 1| 2| null| +----+--------------+--------------+--------------+ Total line number = 4 It costs 0.006s
IoTDB> select * from root.sg1.d1 without null any
+----+--------------+--------------+--------------+
|Time|root.sg1.d1.s1|root.sg1.d1.s2|root.sg1.d1.s3|
+----+--------------+--------------+--------------+
| 0| 1| 2| 3|
+----+--------------+--------------+--------------+
Total line number = 1
It costs 0.04s
IoTDB> select * from root.sg1.d1 without null any (s1, s2) +----+--------------+--------------+--------------+ |Time|root.sg1.d1.s1|root.sg1.d1.s2|root.sg1.d1.s3| +----+--------------+--------------+--------------+ | 0| 1| 2| 3| | 3| 1| 2| null| +----+--------------+--------------+--------------+ Total line number = 2 It costs 0.006s