added fixed= 1 to the end of Item_in_optimizer::fix_fields()

This commit is contained in:
unknown 2003-10-30 12:44:25 +03:00
parent 87eb9ea2b1
commit 35c1b4bcf2

View File

@ -421,6 +421,7 @@ bool Item_in_optimizer::fix_left(THD *thd,
not_null_tables_cache= args[0]->not_null_tables(); not_null_tables_cache= args[0]->not_null_tables();
with_sum_func= args[0]->with_sum_func; with_sum_func= args[0]->with_sum_func;
const_item_cache= args[0]->const_item(); const_item_cache= args[0]->const_item();
fixed= 1;
return 0; return 0;
} }