ueshin commented on PR #47884:
URL: https://github.com/apache/spark/pull/47884#issuecomment-2316122205

   Btw, I can't run test queries in my local classic PySpark for some reason.
   
   ```
   $ ./bin/pyspark
   ```
   
   ```py
   >>> df = spark.createDataFrame([{"a": "x", "b": "y", "c": "z"}])
   >>> df.transpose().show()
   Traceback (most recent call last):
   ...
   py4j.protocol.Py4JJavaError: An error occurred while calling o56.transpose.
   : org.apache.spark.SparkException: [INTERNAL_ERROR] Found the unresolved 
operator: 'UnresolvedTranspose a#0: string SQLSTATE: XX000
   ...
   ```
   
   whereas Spark Connect seems fine.
   
   ```
   $ ./bin/pyspark --remote local
   ```
   
   ```py
   >>> df = spark.createDataFrame([{"a": "x", "b": "y", "c": "z"}])
   >>> df.transpose().show()
   +---+---+
   |key|  x|
   +---+---+
   |  b|  y|
   |  c|  z|
   +---+---+
   ```
   
   Do you see this in your local?


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