douglasdennis commented on code in PR #693: URL: https://github.com/apache/incubator-sedona/pull/693#discussion_r985199634
########## python/tests/sql/test_dataframe_api.py: ########## @@ -0,0 +1,1087 @@ +import math + +from pyspark.sql import functions as f + +from sedona.sql import st_functions as stf +from sedona.sql import st_constructors as stc +from sedona.sql import st_aggregates as sta +from sedona.sql import st_predicates as stp +from tests.test_base import TestBase + +class TestDataFrameAPI(TestBase): + + def test_call_function_using_columns(self): Review Comment: Alright. I gave this a shot. Let me know if it isn't what you were hoping for. Also: I don't know what the proper etiquette is on github. Do I click the "Resolve Conversation" button when I think I did it or do the folks requesting code changes do that when they are satisfied? -- 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]
