kou commented on issue #49873: URL: https://github.com/apache/arrow/issues/49873#issuecomment-4330508410
Hmm. It seems that RE2 on Debian GNU/Linux forky uses `absl::string_view` not `std::string_view`: ```console $ nm --dynamic --demangle /usr/lib/x86_64-linux-gnu/libre2.so | grep re2::RE2::Replace 0000000000040d50 T re2::RE2::Replace(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, re2::RE2 const&, absl::debian7::string_view) ``` The latest Abseil on Debian GNU/Linux forky uses `std::string_view` as an alias of `absl::string_view`. So I think that rebuilding RE2 with the latest Abseil solves this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
