mmano opened a new issue, #12545: URL: https://github.com/apache/iotdb/issues/12545
### Search before asking - [X] I searched in the [issues](https://github.com/apache/iotdb/issues) and found nothing similar. ### Version 1.3 release ### Describe the bug and provide the minimal reproduce step If a same name is used for TAGS and ATTRIBUTES, the DROP clause doesn't know to discriminate them. ``` ALTER timeseries root.turbine.d1.s1 ADD TAGS meta1=tag_value ALTER timeseries root.turbine.d1.s1 ADD ATTRIBUTES meta1=attr_value ALTER timeseries root.turbine.d1.s1 DROP meta1 ALTER timeseries root.turbine.d1.s1 DROP meta1 ``` ### What did you expect to see? DROP should accept a TAGS/ATTRIBUTES specifier (as the others clauses, ADD/UPSERT) ### What did you see instead? IoTDB seems to drop the TAGS at 1th call. The second call removes the attribute ### Anything else? The SET or RENAME clauses exhibit same behavior ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- 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]
