-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Update to arrow
/parquet
53.0.0
, tonic
, prost
, object_store
, pyo3
#12032
Changes from 14 commits
f13c8f3
c51fd50
839ba91
a6cadde
e34019b
7900a07
5ea5ced
6694983
4e3f97e
6cc5db1
68b6e6c
aa310fe
f454e89
98bb11a
5b0fa44
6f501bc
3542aea
e6416c3
3a06488
5d7b0fe
cb623d9
c2a6bf5
1ac1787
67ad234
5b6498e
e77b7df
d38b99e
a89fa87
3717c25
230aeec
ed2b222
b446fcc
b666c31
f2be69f
2062a32
82641d8
c61b499
124efd2
13bb146
03378ed
0ede9e4
d43f9dd
15f4c5f
fdd6e98
5a35f3c
3d0b99c
c534a29
1dfd713
a2613a6
0b6b11c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -401,8 +401,7 @@ fn _regexp_replace_static_pattern_replace<T: OffsetSizeTrait>( | |
DataType::Utf8View => { | ||
let string_view_array = as_string_view_array(&args[0])?; | ||
|
||
let mut builder = StringViewBuilder::with_capacity(string_view_array.len()) | ||
.with_block_size(1024 * 1024 * 2); | ||
let mut builder = StringViewBuilder::with_capacity(string_view_array.len()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does that mean the block size is not used in the builder for this case? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, we don't need it after this pr is merged: apache/arrow-rs#6136 |
||
|
||
for val in string_view_array.iter() { | ||
if let Some(val) = val { | ||
|
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.
Due to apache/arrow-rs#6216 (where null counts is now Option)