Caideyipi commented on issue #17353:
URL: https://github.com/apache/iotdb/issues/17353#issuecomment-4131145463

   The simplest query logic may be using:
   ```
         LocalExecutionPlanner.getInstance()
             .metadata
             .indexScan(
                 new QualifiedObjectName(<database>, <table>),
                 Collections.emptyList(),
                 Arrays.asList(<yourAttributes>),
                 new MPPQueryContext(new QueryId("Processor query")));
   ```
   And it will return Map<String, List<DeviceEntry>>, ignore the key (database, 
for tree view), and the List<DeviceEntry> is all you needed.


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