shuolinl commented on PR #11773:
URL: https://github.com/apache/iotdb/pull/11773#issuecomment-1867336540
You can reproduce the problem using the steps below:
add code at the end of function validateSchema()
```java
try {
Thread.sleep(10 * 1000);
} catch (InterruptedException e) {
// nothing
}
```
run create and insert in one cli:
```java
CREATE TIMESERIES root.db.d1.s1 WITH DATATYPE=INT32, ENCODING=PLAIN
INSERT INTO root.db.d1(timestamp,s1) values(1,1)
```
run delete on another cli:
```java
delete timeseries root.db.d1.s1
```
--
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]