mbutrovich commented on code in PR #2099: URL: https://github.com/apache/datafusion-comet/pull/2099#discussion_r2310885247
########## native/spark-expr/src/static_invoke/char_varchar_utils/read_side_padding.rs: ########## @@ -43,17 +42,69 @@ fn spark_read_side_padding2( match args { [ColumnarValue::Array(array), ColumnarValue::Scalar(ScalarValue::Int32(Some(length)))] => { match array.data_type() { - DataType::Utf8 => spark_read_side_padding_internal::<i32>(array, *length, truncate), - DataType::LargeUtf8 => { - spark_read_side_padding_internal::<i64>(array, *length, truncate) + DataType::Utf8 => spark_read_side_padding_internal::<i32>( + array, + truncate, + ColumnarValue::Scalar(ScalarValue::Int32(Some(*length))), + ), + DataType::LargeUtf8 => spark_read_side_padding_internal::<i64>( + array, + truncate, + ColumnarValue::Scalar(ScalarValue::Int32(Some(*length))), + ), + // Dictionary support required for SPARK-48498 Review Comment: https://github.com/apache/spark/pull/46832 This seems related to padding. How does this affect dictionary encoded columns? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org