Fix for fix for bug#9728 decreased functionality in "on duplicate key update"
  Have to return false to set flag for whole expression.


sql/item.h:
  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:
unknown 2005-06-22 22:58:44 +04:00
parent a6c7fb455a
commit 256c99fdb2

View File

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