Closed
Description
To reproduce, make a dataframe with a columnGroup containing a nullable String column "A". Then:
df.update { myGroupedColumn }
.where { it.a == null } // assumingly filtering to only get rows where this holds
.asFrame {
update { a }.with { "None" }
}
Running this, makes all values of "a" in the columnGroup turn to "None" instead of honoring the where statement.