Xin Wang created IOTDB-488:
------------------------------
Summary: Static members shouldn't be accessed through class
instances
Key: IOTDB-488
URL: https://issues.apache.org/jira/browse/IOTDB-488
Project: Apache IoTDB
Issue Type: Improvement
Components: Core/Engine
Reporter: Xin Wang
Static members shouldn't be accessed through class instances in
_org.apache.iotdb.db.qp.strategy.PhysicalGenerator_
Before:
_Path concatPath = filterPath.addPrefixPath(filterPath, prefix);_
After:
_Path concatPath = Path.addPrefixPath(filterPath, prefix);_
--
This message was sent by Atlassian Jira
(v8.3.4#803005)