Github user craig-chasseur commented on a diff in the pull request:

    https://github.com/apache/incubator-quickstep/pull/27#discussion_r66917331
  
    --- Diff: storage/BasicColumnStoreTupleStorageSubBlock.cpp ---
    @@ -473,10 +483,10 @@ void 
BasicColumnStoreTupleStorageSubBlock::setAttributeValueInPlaceTyped(
     bool BasicColumnStoreTupleStorageSubBlock::deleteTuple(const tuple_id 
tuple) {
       DEBUG_ASSERT(hasTupleWithID(tuple));
     
    -  if (!column_null_bitmaps_.elementIsNull(sort_column_id_)) {
    -    if (column_null_bitmaps_[sort_column_id_].getBit(tuple)) {
    -      --(header_->nulls_in_sort_column);
    -    }
    +  if (sort_specified_
    +      && !column_null_bitmaps_.elementIsNull(sort_column_id_)
    +      && column_null_bitmaps_[sort_column_id_].getBit(tuple)) {
    --- End diff --
    
    That's not the style used in this file, nor in the rest of Quickstep 
generally. See lines 154 and 526 in the same file.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to