Skip to content
Snippets Groups Projects
Commit 06fbc355 authored by zero323's avatar zero323 Committed by Reynold Xin
Browse files

[SPARK-19403][PYTHON][SQL] Correct pyspark.sql.column.__all__ list.

## What changes were proposed in this pull request?

This removes from the `__all__` list class names that are not defined (visible) in the `pyspark.sql.column`.

## How was this patch tested?

Existing unit tests.

Author: zero323 <zero323@users.noreply.github.com>

Closes #16742 from zero323/SPARK-19403.
parent ade075ae
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ from pyspark.context import SparkContext
from pyspark.rdd import ignore_unicode_prefix
from pyspark.sql.types import *
__all__ = ["DataFrame", "Column", "DataFrameNaFunctions", "DataFrameStatFunctions"]
__all__ = ["Column"]
def _create_column_from_literal(literal):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment