diff options
author | bell@sanja.is.com.ua <> | 2004-04-03 11:13:51 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-04-03 11:13:51 +0300 |
commit | 2f4d2a0e386c32fa4e9600cf4213d861b5621abd (patch) | |
tree | c9f3e9d74cc127bb1de122f2c0d31fab4719caac /sql/item_cmpfunc.h | |
parent | 4533338075714e2be7d4cfc8b2825cb52917603f (diff) | |
download | mariadb-git-2f4d2a0e386c32fa4e9600cf4213d861b5621abd.tar.gz |
fixed brocken of client_test
fixed aggregate functions in PS (BUG#3360)
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index cbd1e9feffa..d654bec4f4e 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -991,14 +991,11 @@ public: /* Some usefull inline functions */ -inline Item *and_conds(THD *thd, Item *a, Item *b, TABLE_LIST *tables) +inline Item *and_conds(Item *a, Item *b) { if (!b) return a; if (!a) return b; - Item *cond= new Item_cond_and(a,b); - if (cond) - cond->fix_fields(thd, tables, &cond); - return cond; + return new Item_cond_and(a, b); } Item *and_expressions(Item *a, Item *b, Item **org_item); |