Github user sandeep-katta commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2366#discussion_r196341741
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/sql/execution/streaming/CarbonAppendableStreamSink.scala
---
@@ -127,7 +127,7 @@ class CarbonAppendableStreamSink(
className =
sparkSession.sessionState.conf.streamingFileCommitProtocolClass,
jobId = batchId.toString,
outputPath = fileLogPath,
- isAppend = false)
+ false)
--- End diff --
in spark2.2.1 default argument name is "isAppend" and in 2.3.0 it is
dynamicPartitionOverwrite. So it is required change
---