diff options
author | unknown <evgen@moonbone.local> | 2005-06-22 22:58:44 +0400 |
---|---|---|
committer | unknown <evgen@moonbone.local> | 2005-06-22 22:58:44 +0400 |
commit | 256c99fdb282512d87f5e6db59cc207024bd06c3 (patch) | |
tree | ffa305e23ca61a368e4c2532ae8504ffa9638502 /sql | |
parent | a6c7fb455ae6114ae53be58c49d4ef7dbdcd5e3e (diff) | |
download | mariadb-git-256c99fdb282512d87f5e6db59cc207024bd06c3.tar.gz |
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.
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.
Diffstat (limited to 'sql')
-rw-r--r-- | sql/item.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h index d9a40cbdfb6..82ab5a66cfb 100644 --- a/sql/item.h +++ b/sql/item.h @@ -336,7 +336,7 @@ public: virtual bool set_flags_processor(byte *args) { this->item_flags|= *((uint8*)args); - return true; + return false; } }; |