Fix for fix for bug#9728 decreased functionality in "on duplicate key update"
  Have to return false to set flag for whole expression.
This commit is contained in:
evgen@moonbone.local 2005-06-22 22:58:44 +04:00
parent 2235ea9593
commit 6b9df50c5e

View File

@ -336,7 +336,7 @@ public:
virtual bool set_flags_processor(byte *args)
{
this->item_flags|= *((uint8*)args);
return true;
return false;
}
};