Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion python/pyspark/sql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

"""
public classes of Spark SQL:
Important classes of Spark SQL and DataFrames:

- L{SQLContext}
Main entry point for :class:`DataFrame` and SQL functionality.
Expand All @@ -34,6 +34,8 @@
Methods for handling missing data (null values).
- L{functions}
List of built-in functions available for :class:`DataFrame`.
- L{types}
List of data types available.
"""

from pyspark.sql.context import SQLContext, HiveContext
Expand Down
Loading