uros-db commented on code in PR #53117:
URL: https://github.com/apache/spark/pull/53117#discussion_r2540600908


##########
sql/api/src/main/scala/org/apache/spark/sql/functions.scala:
##########
@@ -9471,6 +9471,18 @@ object functions {
   def st_geomfromwkb(wkb: Column): Column =
     Column.fn("st_geomfromwkb", wkb)
 
+  /**
+   * Returns a new GEOGRAPHY or GEOMETRY value whose SRID is the specified 
SRID value.
+   *
+   * @group st_funcs
+   * @since 4.1.0
+   */
+  def st_setsrid(geo: Column, srid: Column): Column =
+    Column.fn("st_setsrid", geo, srid)
+
+  def st_setsrid(geo: Column, srid: Int): Column =

Review Comment:
   @HyukjinKwon @zhengruifeng Do we need a doc comment for the second overload 
as well, or is the first one sufficient?



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to