github-actions[bot] commented on code in PR #16625:
URL: https://github.com/apache/doris/pull/16625#discussion_r1102770191


##########
be/src/io/s3_reader.cpp:
##########
@@ -45,6 +46,7 @@ S3Reader::S3Reader(const std::map<std::string, std::string>& 
properties, const s
           _closed(false),
           _client(ClientFactory::instance().create(_properties)) {
     DCHECK(_client) << "init aws s3 client error.";
+    Aws::Http::SetCompliantRfc3986Encoding(true);

Review Comment:
   warning: no member named 'SetCompliantRfc3986Encoding' in namespace 
'Aws::Http' [clang-diagnostic-error]
   ```cpp
       Aws::Http::SetCompliantRfc3986Encoding(true);
                  ^
   ```
   



##########
be/src/io/s3_writer.cpp:
##########
@@ -52,6 +53,8 @@ S3Writer::S3Writer(const std::map<std::string, std::string>& 
properties, const s
             tmp_path.c_str(), ".doris_tmp",
             std::ios_base::binary | std::ios_base::trunc | std::ios_base::in | 
std::ios_base::out);
     DCHECK(_client) << "init aws s3 client error.";
+
+    Aws::Http::SetCompliantRfc3986Encoding(true);

Review Comment:
   warning: no member named 'SetCompliantRfc3986Encoding' in namespace 
'Aws::Http' [clang-diagnostic-error]
   ```cpp
       Aws::Http::SetCompliantRfc3986Encoding(true);
                  ^
   ```
   



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to