GoEddie / spark-connect-dotnet

MIT License
10 stars 2 forks source link

DataFrame.Collect() returns IEnumerable<Row> #11

Closed mrericrichter closed 4 months ago

mrericrichter commented 4 months ago

To be compatible with Microsoft's Spark .Net solution, DataFrame.Collect() should return IEnumerable<Row> instead of List<object[]>. The Row class should provide Get(string columnName) and Get(int index) methods that return object and that throw an exception when the given columnName or index are not available.

GoEddie commented 4 months ago

fixed in build 16