You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ val spark = SparkSession
87
87
```kotlin
88
88
spark.toDS("a" to 1, "b" to 2)
89
89
```
90
-
The example above produces `Dataset<Pair<String, Int>>`.
90
+
The example above produces `Dataset<Pair<String, Int>>`. While Kotlin Pairs and Triples are supported, Scala Tuples are reccomended for better support.
91
91
92
92
### Null safety
93
93
There are several aliases in API, like `leftJoin`, `rightJoin` etc. These are null-safe by design.
@@ -104,7 +104,7 @@ After work block ends, `spark.stop()` is called automatically.
0 commit comments