You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by xubo245 <gi...@git.apache.org> on 2018/11/30 01:44:13 UTC

[GitHub] carbondata pull request #2961: [CARBONDATA-3119] Fixing the getOrCreateCarbo...

Github user xubo245 commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2961#discussion_r237722028
  
    --- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/CarbonSession.scala ---
    @@ -180,7 +180,7 @@ object CarbonSession {
           val userSuppliedContext: Option[SparkContext] =
             getValue("userSuppliedContext", builder).asInstanceOf[Option[SparkContext]]
     
    -      if (metaStorePath != null) {
    +      if (metaStorePath != null && !metaStorePath.trim.isEmpty) {
    --- End diff --
    
    Can you add some test case to test it?


---