Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2841#discussion_r227239817
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/page/ComplexColumnPage.java
---
@@ -73,8 +73,9 @@ public ComplexColumnPage(List<ComplexColumnInfo>
complexColumnInfoList) {
* if memory is not sufficient
*/
public void initialize(Map<String, LocalDictionaryGenerator>
columnToDictMap, int pageSize,
- String columnCompressor) throws MemoryException {
+ String columnCompressor, boolean isUnsafe) throws MemoryException {
DataType dataType;
+
--- End diff --
Remove extra line
---