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

    https://github.com/apache/incubator-trafodion/pull/835#discussion_r88138577
  
    --- Diff: core/sql/exp/ExpLOBaccess.cpp ---
    @@ -2280,8 +2280,10 @@ Ex_Lob_Error ExLobsOper (
          return LOB_GLOB_PTR_ERROR;
        }
         }
    -
    -  if ((globPtr != NULL) && (operation != Lob_Init))
    +  if (globPtr != NULL)
    +  {
    +    lobGlobals = (ExLobGlobals *)globPtr;
    +    if ((operation != Lob_Init) && (operation != Lob_Cleanup))
    --- End diff --
    
    It doesn't hurt anything (and an optimizing compiler will optimize it out) 
but it looks like line 2288 duplicates line 2285.


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