diff options
author | sergefp@mysql.com <> | 2004-08-17 02:59:24 +0400 |
---|---|---|
committer | sergefp@mysql.com <> | 2004-08-17 02:59:24 +0400 |
commit | fdb51f67a2521424f9487ac05bced5ec4e2dc4a7 (patch) | |
tree | c15d08efcfe7345961ad895b97c4a32a10069dda /sql/item_cmpfunc.h | |
parent | 4ddeee9d2fec7ba467098ce15e3b9d1221290b2e (diff) | |
download | mariadb-git-fdb51f67a2521424f9487ac05bced5ec4e2dc4a7.tar.gz |
Fix for bug#4488: sign-aware equality check
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index de2b5e84038..415fae59de9 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -74,6 +74,7 @@ public: int compare_e_binary_string(); // compare args[0] & args[1] int compare_e_real(); // compare args[0] & args[1] int compare_e_int(); // compare args[0] & args[1] + int compare_e_int_diff_signedness(); int compare_e_row(); // compare args[0] & args[1] static arg_cmp_func comparator_matrix [4][2]; |