From 8ea459c1069f543904cca0c08f7697ac7fc805bc Mon Sep 17 00:00:00 2001 From: Furqaanahmed Khan Date: Wed, 1 Nov 2023 19:24:13 -0400 Subject: [PATCH] feat: add python test --- python/tests/sql/test_function.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/tests/sql/test_function.py b/python/tests/sql/test_function.py index 948972c428..637c963e46 100644 --- a/python/tests/sql/test_function.py +++ b/python/tests/sql/test_function.py @@ -96,6 +96,9 @@ def test_st_buffer(self): function_df = self.spark.sql("select ST_Buffer(polygondf.countyshape, 1) from polygondf") function_df.show() + function_df = self.spark.sql("select ST_Buffer(polygondf.countryshape, 10, 'endcap=square') from polygondf") + function_df.show() + def test_st_envelope(self): polygon_from_wkt = self.spark.read.format("csv"). \ option("delimiter", "\t"). \