Skip to content

Commit

Permalink
Update datafusion/core/src/physical_optimizer/pruning.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb committed Nov 1, 2024
1 parent 7b57ee3 commit e3f3171
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion datafusion/core/src/physical_optimizer/pruning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1740,7 +1740,6 @@ fn increment_utf8(data: &str) -> Option<String> {

// Try incrementing the code point
if let Some(next_char) = char::from_u32(original + 1) {
// Check if it's a valid continuation
if is_valid_unicode(next_char) {
code_points[idx] = next_char;
// truncate the string to the current index
Expand Down

0 comments on commit e3f3171

Please sign in to comment.