Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2869#discussion_r230388489
--- Diff:
store/sdk/src/main/java/org/apache/carbondata/sdk/file/CarbonReaderBuilder.java
---
@@ -118,6 +122,16 @@ public CarbonReaderBuilder withHadoopConf(String key,
String value) {
return this;
}
+ /**
+ * Configure Vector Reader for carbonReader.
+ *
+ */
+ @Deprecated
+ public CarbonReaderBuilder withVectorReader(boolean useVectorReader) {
+ this.useVectorReader = useVectorReader;
+ return this;
--- End diff --
As per the comment given earlier modify the method and set the flag to true
when this method is invoked
---