Dumitru Preguza
11/20/2025, 12:43 PMThe problem is found in one of the loaded libraries: check library converters (fields callbacks)
Error compiling code:
@DataSchema
interface _DataFrameType1 {
@ColumnName("00000")
val `00000`: String
@ColumnName("00001")
val `00001`: String
@ColumnName("00002")
....
Is it a know issue ?
All I'm trying to achieve is to have this notation in the end:
tryToPivot["00002"] == "59835" // treat the dataframe as a mapDumitru Preguza
11/20/2025, 12:43 PMval tryToPivot = numbersDF.add("the_mask") {
index().toString().padStart(5, '0')
}.pivot("the_mask").values {
value
}Dumitru Preguza
11/20/2025, 12:45 PMDumitru Preguza
11/20/2025, 12:45 PMNikita Klimenko [JB]
11/20/2025, 1:07 PMDumitru Preguza
11/20/2025, 1:09 PM