Github user hbdeshmukh commented on a diff in the pull request: https://github.com/apache/incubator-quickstep/pull/90#discussion_r74795434 --- Diff: expressions/aggregation/AggregationHandleMax.cpp --- @@ -109,43 +99,46 @@ void AggregationHandleMax::mergeStates( } } +void AggregationHandleMax::mergeStatesFast( + const std::uint8_t *source, + std::uint8_t *destination) const { + const TypedValue *src_max_ptr = reinterpret_cast<const TypedValue *>(source); + TypedValue *dst_max_ptr = reinterpret_cast<TypedValue *>(destination); + if (!(src_max_ptr->isNull())) { + compareAndUpdateFast(dst_max_ptr, *src_max_ptr); + } --- End diff -- Can you please align the indentation?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---