ffacs commented on code in PR #2324:
URL: https://github.com/apache/orc/pull/2324#discussion_r2201071829


##########
c++/src/RLEv2.hh:
##########
@@ -123,6 +123,7 @@ namespace orc {
     int64_t* zigzagLiterals_;
     int64_t* baseRedLiterals_;
     int64_t* adjDeltas_;
+    static const int64_t BASE_VALUE_LIMIT = int64_t(1) << 56;

Review Comment:
   ```suggestion
       static constexpr int64_t BASE_VALUE_LIMIT = int64_t(1) << 56;
   ```



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

Reply via email to