diff --git a/python/pyspark/sql/readwriter.py b/python/pyspark/sql/readwriter.py index 90ce8f81eb7fd424ffa3cb9499ef22be84ed55e2..61a6b76a79aedd84730e1bfc96a76dc94da403a6 100644 --- a/python/pyspark/sql/readwriter.py +++ b/python/pyspark/sql/readwriter.py @@ -575,7 +575,7 @@ class DataFrameWriter(OptionUtils): .. note:: Applicable for file-based data sources in combination with :py:meth:`DataFrameWriter.saveAsTable`. - >>> (df.write.format('parquet') + >>> (df.write.format('parquet') # doctest: +SKIP ... .bucketBy(100, 'year', 'month') ... .mode("overwrite") ... .saveAsTable('bucketed_table')) @@ -602,7 +602,7 @@ class DataFrameWriter(OptionUtils): :param col: a name of a column, or a list of names. :param cols: additional names (optional). If `col` is a list it should be empty. - >>> (df.write.format('parquet') + >>> (df.write.format('parquet') # doctest: +SKIP ... .bucketBy(100, 'year', 'month') ... .sortBy('day') ... .mode("overwrite")