Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2869#discussion_r230384381
--- Diff: docs/sdk-guide.md ---
@@ -442,6 +442,16 @@ public CarbonWriterBuilder withJsonInput(Schema
carbonSchema);
public CarbonWriter build() throws IOException, InvalidLoadOptionException;
```
+```
+ /**
+ * Configure Vector Reader for carbonReader.
+ *
+ * @param useVectorReader true will enable vector reader, false will
enable record reader.
+ *
+ */
+ public CarbonReaderBuilder withVectorReader(boolean useVectorReader)
--- End diff --
I think the method signature can be only `public CarbonReaderBuilder
withVectorReader`...adding parameter to method is not required
---