Dataframe 1.0.0-Beta3
Kotlin 2.2.22
For example, given the following column in the data schema.
@ColumnName("CREATED DATE")
val createdAt:LocalDateTime
The following worked in previous version with KSP, but the first expression did not work now.
df.rename { createdAt }.into {"CREATED DATE(Aisa/Shanghai)"} //not work now
df.rename { "CREATED DATE"() }.into {"CREATED DATE(Aisa/Shanghai)"}
df.rename { col("CREATED DATE")}.into {"CREATED DATE(Aisa/Shanghai)"}