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


##########
python/pyspark/sql/tests/test_connect_basic.py:
##########
@@ -79,6 +79,11 @@ def test_simple_explain_string(self):
         result = df.explain()
         self.assertGreater(len(result), 0)
 
+    def test_select_start(self):
+        df = self.connect.read.table(self.tbl_name).select("*")
+        data = df.toPandas()
+        self.assertEqual(len(data.index), 100)

Review Comment:
   Yes not yet. There is on TODO list. We need proto change accordingly to 
support it.
   
   Right now we don't even have a complete Struct support yet :) 



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