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

    https://github.com/apache/spark/pull/17272#discussion_r105889902
  
    --- Diff: python/pyspark/sql/tests.py ---
    @@ -1892,7 +1892,7 @@ def test_list_tables(self):
             self.assertEquals(spark.catalog.listTables(), [])
             self.assertEquals(spark.catalog.listTables("some_db"), [])
             spark.createDataFrame([(1, 1)]).createOrReplaceTempView("temp_tab")
    -        spark.sql("CREATE TABLE tab1 (name STRING, age INT) USING parquet")
    +        spark.sql("CREATE TABLE tbl1 (name STRING, age INT) USING parquet")
    --- End diff --
    
    python test failed 
    ```
    the 
location('file:/home/jenkins/workspace/SparkPullRequestBuilder/spark-warehouse/tab1')
 of table('`default`.`tab1`') already exists.;
    ```
    the location of tab1 does not deleted , I have tried to found out in which 
test case it forget to delete it(search all test cases containing `tab1` and 
run it), but they are all ok to delete the location of tab1, so here we change 
the table name to work around it.



---
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