wangchao316 commented on a change in pull request #2468:
URL: https://github.com/apache/iotdb/pull/2468#discussion_r563034396
##########
File path: server/src/main/java/org/apache/iotdb/db/metadata/MManager.java
##########
@@ -971,8 +994,32 @@ private boolean match(PartialPath fullPath, String[]
prefixNodes) {
}
- protected MeasurementMNode getMeasurementMNode(MNode deviceMNode, String
measurement) {
- return (MeasurementMNode) deviceMNode.getChild(measurement);
+ protected MeasurementMNode getMeasurementMNode(MNode deviceMNode, String
measurement,
+ TSDataType dataType, CompressionType compressionType) throws
MetadataException {
+ MNode child = deviceMNode.getChild(measurement);
//可能会有不一致的问题,即写入文件的元数据中root.a.b.c.d,b不是measurement节点,然后内存中是,则需要修改文件中的
Review comment:
ok. 看到了你的AlterTimeSeriesBasicInfoPlan , 以为你是修改时序。
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]