Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2682#discussion_r214630184
--- Diff:
core/src/main/java/org/apache/carbondata/core/metadata/schema/table/TableSchemaBuilder.java
---
@@ -117,7 +116,7 @@ public TableSchema build() {
property.put(CarbonCommonConstants.TABLE_BLOCKSIZE,
String.valueOf(blockSize));
}
if (blockletSize > 0) {
- property.put(CarbonV3DataFormatConstants.BLOCKLET_SIZE_IN_MB,
String.valueOf(blockletSize));
--- End diff --
Why not use the old variable directly?
---