amaliujia commented on code in PR #38973:
URL: https://github.com/apache/spark/pull/38973#discussion_r1042905152


##########
python/pyspark/sql/connect/dataframe.py:
##########
@@ -824,6 +824,39 @@ def withColumn(self, colName: str, col: Column) -> 
"DataFrame":
             session=self._session,
         )
 
+    def melt(
+        self,
+        ids: List["ColumnOrName"],
+        values: List["ColumnOrName"],
+        variableColumnName: str,
+        valueColumnName: str,
+    ) -> "DataFrame":

Review Comment:
   We only need to match PySpark now so I think there is no need. PySpark only 
has the first API.



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