diff options
author | unknown <kaa@polly.local> | 2006-09-13 14:41:28 +0400 |
---|---|---|
committer | unknown <kaa@polly.local> | 2006-09-13 14:41:28 +0400 |
commit | 418ae41b4867e53e770d79f66e6d9ba3f7b8974b (patch) | |
tree | 1a5961fcf20771718331caeaeb16054878a411e9 /sql/item_cmpfunc.h | |
parent | 5aa6e8615e0aeb3babafcd5e93e67b72027fcdaa (diff) | |
download | mariadb-git-418ae41b4867e53e770d79f66e6d9ba3f7b8974b.tar.gz |
Cset exclude: kaa@polly.local|ChangeSet|20060912122540|09861
Cset exclude: kaa@polly.local|ChangeSet|20060908100829|09983
sql/item_cmpfunc.cc:
Exclude
sql/item_cmpfunc.h:
Exclude
sql/item_func.cc:
Exclude
sql/item_func.h:
Exclude
sql/log_event.cc:
Exclude
sql/sql_class.h:
Exclude
mysql-test/r/case.result:
Exclude
mysql-test/r/func_if.result:
Exclude
mysql-test/r/func_test.result:
Exclude
mysql-test/r/user_var.result:
Exclude
mysql-test/t/case.test:
Exclude
mysql-test/t/func_if.test:
Exclude
mysql-test/t/func_test.test:
Exclude
mysql-test/t/user_var.test:
Exclude
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 513260205c2..73abe208d9e 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -1077,17 +1077,3 @@ inline Item *and_conds(Item *a, Item *b) } Item *and_expressions(Item *a, Item *b, Item **org_item); - -inline int compare_int_signed_unsigned(longlong sval, ulonglong uval) -{ - if (sval < 0 || (ulonglong)sval < uval) - return -1; - if ((ulonglong)sval == uval) - return 0; - return 1; -} - -inline int compare_int_unsigned_signed(ulonglong uval, longlong sval) -{ - return -compare_int_signed_unsigned(sval, uval); -} |