This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new d703808347c [SPARK-40453][SPARK-41715][CONNECT][TESTS][FOLLOWUP] Skip 
freqItems doctest due to Scala 2.13 failure
d703808347c is described below

commit d703808347ca61ed05541e7252a0e881b1be7431
Author: Dongjoon Hyun <dongj...@apache.org>
AuthorDate: Mon Feb 13 09:43:12 2023 +0900

    [SPARK-40453][SPARK-41715][CONNECT][TESTS][FOLLOWUP] Skip freqItems doctest 
due to Scala 2.13 failure
    
    ### What changes were proposed in this pull request?
    
    This is a follow-up of #39947 to ignore `freqItems` doctest back.
    
    ### Why are the changes needed?
    
    ### Does this PR introduce _any_ user-facing change?
    
    ### How was this patch tested?
    
    Closes #39983 from dongjoon-hyun/SPARK-40453.
    
    Authored-by: Dongjoon Hyun <dongj...@apache.org>
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
---
 python/pyspark/sql/dataframe.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/pyspark/sql/dataframe.py b/python/pyspark/sql/dataframe.py
index 5649d362b8b..d9de9ee14ac 100644
--- a/python/pyspark/sql/dataframe.py
+++ b/python/pyspark/sql/dataframe.py
@@ -4598,7 +4598,7 @@ class DataFrame(PandasMapOpsMixin, PandasConversionMixin):
         Examples
         --------
         >>> df = spark.createDataFrame([(1, 11), (1, 11), (3, 10), (4, 8), (4, 
8)], ["c1", "c2"])
-        >>> df.freqItems(["c1", "c2"]).show()
+        >>> df.freqItems(["c1", "c2"]).show()  # doctest: +SKIP
         +------------+------------+
         |c1_freqItems|c2_freqItems|
         +------------+------------+


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

Reply via email to