-
Notifications
You must be signed in to change notification settings - Fork 2.1k
fix: Avoid overlay panic on valid Unicode input, Postgres compatibility
#22046
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
neilconway
wants to merge
1
commit into
apache:main
Choose a base branch
from
neilconway:neilc/fix-overlay-unicode
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+299
−116
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| // Licensed to the Apache Software Foundation (ASF) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The ASF licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| mod helper; | ||
|
|
||
| use arrow::datatypes::{DataType, Field}; | ||
| use criterion::{Criterion, criterion_group, criterion_main}; | ||
| use datafusion_common::ScalarValue; | ||
| use datafusion_common::config::ConfigOptions; | ||
| use datafusion_expr::{ColumnarValue, ScalarFunctionArgs}; | ||
| use helper::gen_string_array; | ||
| use std::hint::black_box; | ||
| use std::sync::Arc; | ||
|
|
||
| fn criterion_benchmark(c: &mut Criterion) { | ||
| const N_ROWS: usize = 8192; | ||
| const STR_LEN: usize = 128; | ||
|
|
||
| let overlay = datafusion_functions::core::overlay(); | ||
| let config_options = Arc::new(ConfigOptions::default()); | ||
|
|
||
| let mut args = gen_string_array(N_ROWS, STR_LEN, 0.1, 0.5, false); | ||
| args.push(ColumnarValue::Scalar(ScalarValue::Utf8(Some( | ||
| "DataFusion".to_string(), | ||
| )))); | ||
| args.push(ColumnarValue::Scalar(ScalarValue::Int64(Some(32)))); | ||
| args.push(ColumnarValue::Scalar(ScalarValue::Int64(Some(8)))); | ||
|
|
||
| let arg_fields = args | ||
| .iter() | ||
| .enumerate() | ||
| .map(|(idx, arg)| Field::new(format!("arg_{idx}"), arg.data_type(), true).into()) | ||
| .collect::<Vec<_>>(); | ||
| let return_field = Arc::new(Field::new("f", DataType::Utf8, true)); | ||
|
|
||
| c.bench_function("overlay_StringArray_utf8_scalar_args", |b| { | ||
| b.iter(|| { | ||
| black_box( | ||
| overlay | ||
| .invoke_with_args(ScalarFunctionArgs { | ||
| args: args.clone(), | ||
| arg_fields: arg_fields.clone(), | ||
| number_rows: N_ROWS, | ||
| return_field: Arc::clone(&return_field), | ||
| config_options: Arc::clone(&config_options), | ||
| }) | ||
| .unwrap(), | ||
| ) | ||
| }) | ||
| }); | ||
| } | ||
|
|
||
| criterion_group!(benches, criterion_benchmark); | ||
| criterion_main!(benches); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small optimization idea: the four-argument path calls
string.chars().count()to clamplen, butoverlay_oneends up computing the character length again internally. Sinceoverlay_onealready handles lengths that extend past the end of the string, it might be simpler to passlenthrough directly or move the clamp logic intooverlay_oneso we avoid the extra Unicode scan per row.