Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1837#discussion_r163760694
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/table/CarbonCreateTableAsSelectCommand.scala
---
@@ -42,15 +42,11 @@ case class CarbonCreateTableAsSelectCommand(
ifNotExistsSet: Boolean = false,
tableLocation: Option[String] = None) extends AtomicRunnableCommand {
- /**
- * variable to be used for insert into command for checking whether the
- * table is created newly or already existed
- */
- var isTableCreated: Boolean = false
-
+ var loadCommand: CarbonInsertIntoCommand = _
--- End diff --
enter new line
---