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

   ## Description
   
   When analysing the delete data statement, the deletion of a writable view 
should be converted to an operation on the original timeseries.
   
   For example:
   ```
   insert into root.db.d1(time, s1) values(1,1);
   flush;
   create view root.db.d1.vs1 as select s1 from root.db.d1;
   delete from root.db.d1.vs1 where time <= 1;
   ```
   
   modfication file should not contain `root.db.d1.vs1`


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