Skip to content

Commit

Permalink
Merge pull request apache#3 from amaliujia/spark_connect_planner_v2
Browse files Browse the repository at this point in the history
Define NumericType in client.py alaways the NumericType = typing.Union[int, float]
  • Loading branch information
amaliujia committed Aug 17, 2022
2 parents 3ababf0 + 8aa3dfb commit e0ddf8e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/pyspark/sql/connect/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
from pyspark.sql.connect.data_frame import DataFrame
from pyspark.sql.connect.plan import Read, Sql

if typing.TYPE_CHECKING:
NumericType = typing.Union[int, float]
NumericType = typing.Union[int, float]

logging.basicConfig(level=logging.INFO)

Expand Down

0 comments on commit e0ddf8e

Please sign in to comment.