-
Notifications
You must be signed in to change notification settings - Fork 4.2k
GH-45523: [R] Implement Utf8View type bindings #49712
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
base: main
Are you sure you want to change the base?
Changes from all commits
23abe2e
d22096d
b552c16
cfa1c91
6399779
aa07da8
58971b5
dfad6fa
3c88f34
1baff8d
a017257
5494786
e5cac7b
5c93673
f00d6e0
d055479
fafef79
5b61c04
afa85e8
42ff88b
39c4c92
88d435d
d448511
03be67f
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 |
|---|---|---|
|
|
@@ -826,7 +826,8 @@ class PyDictionaryConverter<U, enable_if_has_string_view<U>> | |
| } else { | ||
| ARROW_RETURN_NOT_OK( | ||
| PyValue::Convert(this->value_type_, this->options_, value, view_)); | ||
| return this->value_builder_->Append(view_.bytes, static_cast<int32_t>(view_.size)); | ||
| return this->value_builder_->Append( | ||
| std::string_view(view_.bytes, static_cast<size_t>(view_.size))); | ||
|
Comment on lines
+829
to
+830
Member
Author
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. The old code passed |
||
| } | ||
|
pitrou marked this conversation as resolved.
|
||
| } | ||
|
|
||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.