Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1418#discussion_r149995554
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/CarbonDatasourceHadoopRelation.scala
---
@@ -48,7 +48,8 @@ case class CarbonDatasourceHadoopRelation(
isSubquery: ArrayBuffer[Boolean] = new ArrayBuffer[Boolean]())
extends BaseRelation with InsertableRelation {
- lazy val identifier: AbsoluteTableIdentifier =
AbsoluteTableIdentifier.fromTablePath(paths.head)
+ lazy val identifier: AbsoluteTableIdentifier =
AbsoluteTableIdentifier.from(paths.head,
+ parameters("dbname"), parameters("tablename"))
--- End diff --
Check the camel case of parameters, please debug and verify oce
---