diff options
author | unknown <serg@serg.mylan> | 2005-10-21 14:56:59 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-10-21 14:56:59 +0200 |
commit | 07fa475e26e47cc32e4225d1684e877ed19236b3 (patch) | |
tree | 160321c187afb5f6139c643c78bb53774d49cbc5 /sql/item.cc | |
parent | c9978d8bcbf609d5e495df77f7306cdb5abaf7a1 (diff) | |
download | mariadb-git-07fa475e26e47cc32e4225d1684e877ed19236b3.tar.gz |
compilation failure fixed
Diffstat (limited to 'sql/item.cc')
-rw-r--r-- | sql/item.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.cc b/sql/item.cc index d284af2b9f1..b2a1e44cfcc 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -1768,7 +1768,7 @@ bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref) Item** res= find_item_in_list(this, thd->lex->current_select->item_list, &counter, REPORT_EXCEPT_NOT_FOUND, ¬_used); - if (res != not_found_item && (*res)->type() == Item::FIELD_ITEM) + if (res != (Item **)not_found_item && (*res)->type() == Item::FIELD_ITEM) { set_field((*((Item_field**)res))->field); return 0; |