Github user akashrn5 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1615#discussion_r155267087
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonLoadDataCommand.scala
---
@@ -148,7 +148,9 @@ case class CarbonLoadDataCommand(
carbonLoadModel,
factPath,
dataFrame.isDefined,
- optionsFinal)
+ optionsFinal,
+ options,
--- End diff --
from finalOptions we will get all the default values of that particular
option, but if we need only the options given from user,we need options also,
so this one is added
---