Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16592#discussion_r104784527
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala 
---
    @@ -30,23 +30,170 @@ import org.apache.spark.sql.catalyst.catalog._
     import 
org.apache.spark.sql.catalyst.catalog.CatalogTypes.TablePartitionSpec
     import org.apache.spark.sql.internal.SQLConf
     import org.apache.spark.sql.internal.StaticSQLConf.CATALOG_IMPLEMENTATION
    -import org.apache.spark.sql.test.SharedSQLContext
    +import org.apache.spark.sql.test.{SharedSQLContext, SQLTestUtils}
     import org.apache.spark.sql.types._
     import org.apache.spark.util.Utils
     
    -class DDLSuite extends QueryTest with SharedSQLContext with 
BeforeAndAfterEach {
    -  private val escapedIdentifier = "`(.+)`".r
     
    +class InMemoryCatalogedDDLSuite extends DDLSuite with SharedSQLContext 
with BeforeAndAfterEach {
       override def afterEach(): Unit = {
         try {
           // drop all databases, tables and functions after each test
           spark.sessionState.catalog.reset()
         } finally {
    -      Utils.deleteRecursively(new File("spark-warehouse"))
    +      Utils.deleteRecursively(new 
File(spark.sessionState.conf.warehousePath))
           super.afterEach()
         }
       }
     
    +  protected override def generateTable(
    +      catalog: SessionCatalog,
    +      name: TableIdentifier): CatalogTable = {
    +    val storage =
    +      CatalogStorageFormat(
    +        locationUri = Some(catalog.defaultTablePath(name)),
    --- End diff --
    
    nit: `CatalogStorageFormat.copy(locationUri = xxx)`


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to