Alima777 commented on a change in pull request #934: Delete dataTypeMapping etc 
fields in QueryPlan
URL: https://github.com/apache/incubator-iotdb/pull/934#discussion_r396985396
 
 

 ##########
 File path: server/src/main/java/org/apache/iotdb/db/metadata/MManager.java
 ##########
 @@ -548,13 +548,13 @@ public TSDataType getSeriesType(String path) throws 
MetadataException {
 
 
   /**
-   * Get all devices under given prefixPath.
+   * Get all device nodes under given prefixPath.
    *
    * @param prefixPath a prefix of a full path. if the wildcard is not at the 
tail, then each
    * wildcard can only match one level, otherwise it can match to the tail.
-   * @return A HashSet instance which stores devices names with given 
prefixPath.
+   * @return A list which stores device nodes with given prefixPath.
    */
-  public Set<String> getDevices(String prefixPath) throws MetadataException {
+  public List<MNode> getDevices(String prefixPath) throws MetadataException {
 
 Review comment:
   If using `String` here, we have to find the node again by path string in 
AlignByDeviceDataSet. So storaging MNode directly here can reduce that process.

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to