Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2765#discussion_r220488388
--- Diff:
core/src/main/java/org/apache/carbondata/core/indexstore/Blocklet.java ---
@@ -92,7 +95,13 @@ public String getFilePath() {
blocklet.blockletId == null;
}
- @Override public int hashCode() {
+ @Override
+ public String toString() {
+ return String.format("[shard:%s, blockletId:%s]", filePath,
blockletId);
--- End diff --
so I think you can change the implementation of toString, just use the
common toString method generated by the editor.
---