summaryrefslogtreecommitdiff
path: root/sql/item_cmpfunc.h
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-11-29 22:47:50 +0100
committerunknown <serg@serg.mylan>2004-11-29 22:47:50 +0100
commit26fe3289951aeb93f2f853d7feda3a2c96104f0a (patch)
tree7d8888f7ac0be4fe6e833eb4c4cef2bbb7279902 /sql/item_cmpfunc.h
parent2d527b72f3e1c6c32800af489ea7b275be64bd12 (diff)
downloadmariadb-git-26fe3289951aeb93f2f853d7feda3a2c96104f0a.tar.gz
compatibility fixes
mysql-test/r/strict.result: fixed mysql-test/r/view.result: rolled back mysql-test/t/information_schema.test: fix for 2GB file size limit mysql-test/t/ps_1general.test: fix for 2GB file size limit mysql-test/t/view.test: fix for 2GB file size limit sql/field.cc: double->int conversion troubles cleanup sql/item_cmpfunc.h: warning fixed sql/sql_select.cc: division by zero fixed
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r--sql/item_cmpfunc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h
index 35ce494257b..6a7e037bed1 100644
--- a/sql/item_cmpfunc.h
+++ b/sql/item_cmpfunc.h
@@ -1086,7 +1086,7 @@ public:
};
-class Item_equal_iterator :List_iterator_fast<Item_field>
+class Item_equal_iterator : public List_iterator_fast<Item_field>
{
public:
inline Item_equal_iterator(Item_equal &item_equal)