jiayuasu commented on code in PR #1069:
URL: https://github.com/apache/sedona/pull/1069#discussion_r1379444401
##########
python/tests/sql/test_function.py:
##########
@@ -187,6 +187,11 @@ def test_st_transform(self):
"select ST_Transform(polygondf.countyshape,
'epsg:4326','epsg:3857', false) from polygondf")
function_df.show()
+ function_df = self.spark.sql(
+ "select ST_Transform(polygondf.countyshape, 'epsg:3857', false)
from polygondf"
+ )
+ function_df.show()
Review Comment:
Same thing here. Do not do `show`. Use assertion to check the correctness
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]