Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2080#discussion_r176740315
--- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/CarbonSource.scala ---
@@ -334,6 +334,11 @@ object CarbonSource {
properties.foreach(e => map.put(e._1, e._2))
map.put("tablepath", identifier.getTablePath)
map.put("dbname", identifier.getDatabaseName)
+ val LOGGER = LogServiceFactory.getLogService(this.getClass.getCanonicalName)
+ if (map.containsKey("tableName")) {
+ LOGGER.warn("tableName is useless in option when create table")
--- End diff --
change to `tableName is not required in options, ignoring it`
---