Michael Smith has posted comments on this change. ( 
http://gerrit.cloudera.org:8080/22718 )

Change subject: IMPALA-13923: Support more compression levels for ZSTD and ZLIB
......................................................................


Patch Set 6:

(1 comment)

http://gerrit.cloudera.org:8080/#/c/22718/3/be/src/util/parse-util.h
File be/src/util/parse-util.h:

http://gerrit.cloudera.org:8080/#/c/22718/3/be/src/util/parse-util.h@74
PS3, Line 74:       std::optional<int>& level);
> I wanted to follow this general practice, but for updating an std::optional
Pass it as a pointer

  std::optional<int>* level);

then update it in the function with

  *level = compression_level;

or

  level->emplace(compression_level);



--
To view, visit http://gerrit.cloudera.org:8080/22718
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I5b98c735246f08e04598a4e752c8cca04e31a88a
Gerrit-Change-Number: 22718
Gerrit-PatchSet: 6
Gerrit-Owner: Surya Hebbar <[email protected]>
Gerrit-Reviewer: Abhishek Rawat <[email protected]>
Gerrit-Reviewer: Alexey Serbin <[email protected]>
Gerrit-Reviewer: Impala Public Jenkins <[email protected]>
Gerrit-Reviewer: Joe McDonnell <[email protected]>
Gerrit-Reviewer: Michael Smith <[email protected]>
Gerrit-Reviewer: Surya Hebbar <[email protected]>
Gerrit-Comment-Date: Tue, 22 Apr 2025 16:51:25 +0000
Gerrit-HasComments: Yes

Reply via email to