grundprinzip opened a new pull request, #35:
URL: https://github.com/apache/spark-connect-go/pull/35

   ### What changes were proposed in this pull request?
   This patch provides additional base capabilities that are needed to 
parallelize development more by adding very skeleton behavior for the `Column` 
abstraction in Spark.
   
   This allows the users to use the following APIs:
   
   ```
   df, _ := spark.Sql("select * from range(100)")
   col, _ := df.Col("id")
   df, _ := df.Filter(col.Gt(functions.Lit(50))
   df.Show(ctx, 100, false)
   ```
   
   ### Why are the changes needed?
   Compatibility
   
   ### Does this PR introduce _any_ user-facing change?
   Adds the necessary public API for `Column` and `functions`.
   
   
   ### How was this patch tested?
   Added new tests.
   


-- 
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: reviews-unsubscr...@spark.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to