Post-merge fixes

This commit is contained in:
unknown 2006-07-22 16:18:28 +04:00
parent 0950a31683
commit 0f5797f576
2 changed files with 3 additions and 1 deletions

View File

@ -575,7 +575,7 @@ Item_allany_subselect::Item_allany_subselect(Item * left_exp,
chooser_compare_func_creator fc,
st_select_lex *select_lex,
bool all_arg)
:Item_in_subselect(), all(all_arg), func_creator(fc)
:Item_in_subselect(), func_creator(fc), all(all_arg)
{
DBUG_ENTER("Item_in_subselect::Item_in_subselect");
left_expr= left_exp;

View File

@ -523,6 +523,8 @@ class sys_var;
class Comp_creator;
typedef Comp_creator* (*chooser_compare_func_creator)(bool invert);
#include "item.h"
extern my_decimal decimal_zero;
/* sql_parse.cc */
void free_items(Item *item);
void cleanup_items(Item *item);