Github user hakanmemisoglu commented on a diff in the pull request:

    https://github.com/apache/incubator-quickstep/pull/120#discussion_r84566413
  
    --- Diff: storage/FastSeparateChainingHashTable.hpp ---
    @@ -145,10 +145,10 @@ class FastSeparateChainingHashTable
             header_->buckets_allocated.load(std::memory_order_relaxed);
         void *bucket_ptr = static_cast<char *>(buckets_) + kValueOffset;
         for (std::size_t bucket_num = 0; bucket_num < num_buckets; 
++bucket_num) {
    -      for (std::size_t handle_num = 0; handle_num < handles_.size(); 
++handle_num) {
    +      for (std::size_t handle_id = 0; handle_id < num_handles_; 
++handle_id) {
             void *value_internal_ptr =
    --- End diff --
    
    Hi @hbdeshmukh,
    It is not critical but I have a question.
    Is there a particular reason for `value_internal_ptr` 's type is `void *` 
instead of `char *`. Right hand side of the assignment has type of `char *`.


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

Reply via email to