javeme commented on code in PR #1852:
URL:
https://github.com/apache/incubator-hugegraph/pull/1852#discussion_r859642683
##########
hugegraph-core/src/main/java/com/baidu/hugegraph/backend/store/BackendStore.java:
##########
@@ -132,41 +141,41 @@ public default String olapTableName(Id id) {
}
// Increase next id for specific type
- public void increaseCounter(HugeType type, long increment);
+ void increaseCounter(HugeType type, long increment);
// Get current counter for a specific type
- public long getCounter(HugeType type);
+ long getCounter(HugeType type);
- public default void createOlapTable(Id pkId) {
+ default void createOlapTable(Id pkId) {
throw new UnsupportedOperationException(
"BackendStore.createOlapTable()");
}
- public default void checkAndRegisterOlapTable(Id pkId) {
+ default void checkAndRegisterOlapTable(Id pkId) {
throw new UnsupportedOperationException(
"BackendStore.checkAndRegisterOlapTable()");
}
- public default void clearOlapTable(Id pkId) {
+ default void clearOlapTable(Id pkId) {
throw new UnsupportedOperationException(
"BackendStore.clearOlapTable()");
}
- public default void removeOlapTable(Id pkId) {
+ default void removeOlapTable(Id pkId) {
throw new UnsupportedOperationException(
"BackendStore.removeOlapTable()");
}
- public default Map<String, String> createSnapshot(String snapshotDir) {
+ default Map<String, String> createSnapshot(String snapshotDir) {
throw new UnsupportedOperationException("createSnapshot");
}
- public default void resumeSnapshot(String snapshotDir,
+ default void resumeSnapshot(String snapshotDir,
Review Comment:
also update alignment
--
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]