File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/util
plugins/kotlin-dataframe/src/org/jetbrains/kotlinx/dataframe/plugin/impl/api Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ internal const val COL_TYPE_INSTANT_REPLACE = "ColType.DeprecatedInstant"
140140internal const val INSERT_AFTER_COL_PATH =
141141 " This `after()` overload will be removed in favor of `after { }` with Column Selection" +
142142 " DSL. $MESSAGE_1_0 "
143- internal const val INSERT_AFTER_COL_PATH_REPLACE = " this.after { colPath }"
143+ internal const val INSERT_AFTER_COL_PATH_REPLACE = " this.after { columnPath }"
144144
145145// endregion
146146
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ internal class InsertAfter0 : AbstractInterpreter<PluginDataFrameSchema>() {
8383
8484 override fun Arguments.interpret (): PluginDataFrameSchema {
8585 return receiver.df.asDataFrame()
86- .insert(receiver.column.asDataColumn()).after( column.col.path)
86+ .insert(receiver.column.asDataColumn()).after { column.col.path }
8787 .toPluginDataFrameSchema()
8888 }
8989}
You can’t perform that action at this time.
0 commit comments