Skip to content

Commit

Permalink
Merge branch 'ob-10.0' into 10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Buggynours committed Sep 8, 2015
2 parents cd9b919 + e939ea5 commit d69931e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions storage/connect/ha_connect.cc
Expand Up @@ -2486,9 +2486,6 @@ PFIL ha_connect::CondFilter(PGLOBAL g, Item *cond)
if (!i && (ismul))
return NULL;

if ((res= pval->val_str(&tmp)) == NULL)
return NULL; // To be clarified

switch (args[i]->real_type()) {
case COND::STRING_ITEM:
pp->Value= PlugSubAllocStr(g, NULL, res->ptr(), res->length());
Expand Down Expand Up @@ -2520,7 +2517,11 @@ PFIL ha_connect::CondFilter(PGLOBAL g, Item *cond)
return NULL;
} // endswitch type

if (trace)
// This was moved because cannot be done for FUNC_ITEM
if ((res= pval->val_str(&tmp)) == NULL)
return NULL; // To be clarified

if (trace)
htrc("Value=%.*s\n", res->length(), res->ptr());

// Append the value to the argument list
Expand Down

0 comments on commit d69931e

Please sign in to comment.