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

    https://github.com/apache/spark/pull/21370#discussion_r192610839
  
    --- Diff: python/pyspark/sql/tests.py ---
    @@ -3040,6 +3040,36 @@ def test_csv_sampling_ratio(self):
                 .csv(rdd, samplingRatio=0.5).schema
             self.assertEquals(schema, StructType([StructField("_c0", 
IntegerType(), True)]))
     
    +    def test_repr_html(self):
    +        import re
    +        pattern = re.compile(r'^ *\|', re.MULTILINE)
    +        df = self.spark.createDataFrame([(1, "1"), (22222, "22222")], 
("key", "value"))
    +        self.assertEquals(None, df._repr_html_())
    +        self.spark.conf.set("spark.sql.repl.eagerEval.enabled", "true")
    --- End diff --
    
    Can we use `with self.sql_conf(...)`?


---

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

Reply via email to