Commit e635e05
### Rationale for this change
Protobuf v30.2 uses `absl::string_view` instead of `const char*` as seen here:
protocolbuffers/protobuf@a9ad51f
This is breaking on our CI.
### What changes are included in this PR?
Explicitly convert `google::protobuf::EnumValueDescriptor::name()` and `google::protobuf::Message::descriptor()->full_name()` from `absl::string_view` to `std::string`
### Are these changes tested?
Via CI, MinGW CI jobs use protobuf v30.2 and those are fixed with this change.
### Are there any user-facing changes?
No
* GitHub Issue: #46134
Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 71a2a29 commit e635e05
File tree
3 files changed
+4
-4
lines changed- cpp/src/arrow/engine/substrait
3 files changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
145 | | - | |
| 145 | + | |
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | | - | |
66 | | - | |
| 65 | + | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| |||
0 commit comments