AlenkaF commented on PR #45462:
URL: https://github.com/apache/arrow/pull/45462#issuecomment-2747677367
Note, CI Win failures do not look related but there is a linter fix needed:
```
@@ -257,11 +257,12 @@ void FileEncryptionProperties::encrypt_schema(const
SchemaDescriptor& schema) {
// encrypted_column encrypts column 'it' when 'it' is either equal to
// encrypted_column, or 'it' starts with encrypted_column_prefix,
// i.e. encrypted_column followed by a '.'
- while (it != column_path_vec.end() &&
- (it->first == encrypted_column ||
- // C++20: can be replaced with
it->first.starts_with(encrypted_column_prefix)
- it->first.compare(0, encrypted_column_prefix_len,
- encrypted_column_prefix) == 0)) {
+ while (
+ it != column_path_vec.end() &&
+ (it->first == encrypted_column ||
+ // C++20: can be replaced with
it->first.starts_with(encrypted_column_prefix)
+ it->first.compare(0, encrypted_column_prefix_len,
encrypted_column_prefix) ==
+ 0)) {
```
--
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]