// Generate the logical-to-physical transform expression which must be evaluated on every data
// chunk before writing. At the moment, this is a transaction-wide expression.
fn generate_logical_to_physical(&self) -> Expression {
// for now, we just pass through all the columns except partition columns.
// note this is _incorrect_ if table config deems we need partition columns.
...
}
This should actually be based on table properties instead of always removing
See comment:
This should actually be based on table properties instead of always removing