Hi all,
I am currently working on issue[1], to support delete data within a time range. The time range in where expressions is to be determined. I am planning to support simple Lt/LE, Gt/GE, EQ, AND with two Lt/LE, Gt/GE, EQs, in the where expression. e.g. ``` delete from root.sg.d1.s1 where time < 10 delete from root.sg.d1.s1 where time <= 10 delete from root.sg.d1.s1 where time < 20 and time > 10 delete from root.sg.d1.s1 where time <= 20 and time >= 10 delete from root.sg.d1.s1 where time > 20 delete from root.sg.d1.s1 where time >= 20 delete from root.sg.d1.s1 where time = 20 ``` If you have any suggestions, please leave your comments. [1]https://issues.apache.org/jira/browse/IOTDB-627 Thanks, Wei Shao
