File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33
44Throws an exception if the specified column is missing or its type is not subtype of ` C ` .
55From the compiler plugin perspective, a new column will appear in the compile-time schema as a result of this operation.
6- The aim here is to help incrementally migrate workflows to extension properties API.
6+ The aim here is to help incrementally migrate workflows to [ extension properties API] ( extensionPropertiesApi.md ) .
77
88Will work in compiler plugin starting from IntelliJ IDEA 2026.2 and Kotlin 2.4.0.
99
@@ -14,6 +14,11 @@ require { column }
1414** Related operations** : [ ] ( cast.md ) , [ ] ( convertTo )
1515
1616``` kotlin
17+ // Before `require` extension property will not be resolved
18+ // peopleDf.select { name.firstName }
19+
20+ // Require a column with a runtime check
1721val df = peopleDf.require { " name" [" firstName" ]<String >() }
22+ // Use extension property after `require`
1823val v: String = df.name.firstName[0 ]
1924```
You can’t perform that action at this time.
0 commit comments