~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to sql/item_func.h

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
691
691
 
692
692
class Item_func_rand :public Item_real_func
693
693
{
694
 
  struct rand_struct *rand;
 
694
  struct my_rnd_struct *rand;
695
695
public:
696
696
  Item_func_rand(Item *a) :Item_real_func(a), rand(0) {}
697
697
  Item_func_rand()        :Item_real_func() {}
1456
1456
 
1457
1457
 
1458
1458
/* for fulltext search */
1459
 
#include <ft_global.h>
1460
1459
 
1461
1460
class Item_func_match :public Item_real_func
1462
1461
{