Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2103#discussion_r179950086
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/CarbonSession.scala ---
@@ -124,15 +127,30 @@ object CarbonSession {
getOrCreateCarbonSession(null, null)
}
+ def getOrCreateCarbonSessionWithOutHive(): SparkSession = {
--- End diff --
instead of providing this, can you add `def enableInMemCatalog():
CarbonBuilder`, so that user can do:
```
SparkSession.builder
.enableInMemCatalog
.getOrCreateCarbonSession(x,x)
```
---