summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2002-11-28 09:11:35 +0200
committerunknown <bell@sanja.is.com.ua>2002-11-28 09:11:35 +0200
commit0afea4007744dba7b4c7afacf9afc3b48ec84e97 (patch)
tree4145a19ad125ca3f6ebe89fe6beae56d3cc5b62c /sql/item_func.h
parentc53dd15db8ac6d744e58662d15239d3444b954a6 (diff)
downloadmariadb-git-0afea4007744dba7b4c7afacf9afc3b48ec84e97.tar.gz
Item_func_equal made uniform
mysql-test/r/row_test.result: Equal test mysql-test/t/row_test.test: Equal test
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index 61bac374152..e3b5fa3445a 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -55,6 +55,12 @@ public:
int compare_real(); // compare args[0] & args[1]
int compare_int(); // compare args[0] & args[1]
int compare_row(); // compare args[0] & args[1]
+ int compare_e_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_row(); // compare args[0] & args[1]
+
+ static arg_cmp_func comparator_matrix [4][2];
friend class Item_func;
};