Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2113#discussion_r181666147
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/strategy/DDLStrategy.scala
---
@@ -244,6 +244,13 @@ class DDLStrategy(sparkSession: SparkSession) extends
SparkStrategy {
throw new MalformedCarbonCommandException("Unsupported operation
on unmanaged table")
}
+ // TODO remove this limitation after streaming table support
'Lucene' DataMap
+ // if the table has 'Lucene' DataMap, it doesn't support streaming
now
+ if (carbonTable.hasLuceneDataMap) {
--- End diff --
no need to do this now, do it later
---