Uploaded image for project: 'Apache IoTDB'
  1. Apache IoTDB
  2. IOTDB-2602

Null Value Filter: support filtering based on partial columns

    XMLWordPrintableJSON

Details

    • 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 

      Attachments

        Activity

          People

            zjx_coder JiaXin Zhang
            liuminghui Minghui Liu
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Time Tracking

                Estimated:
                Original Estimate - 40h
                40h
                Remaining:
                Remaining Estimate - 40h
                40h
                Logged:
                Time Spent - Not Specified
                Not Specified