~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/concat.h

  • Committer: Monty Taylor
  • Date: 2010-06-02 22:35:45 UTC
  • mto: This revision was merged to the branch mainline in revision 1586.
  • Revision ID: mordred@inaugust.com-20100602223545-q8ekf9b40a85nwuf
Rearragned unittests into a single exe because of how we need to link it
(thanks lifeless)
Link with server symbols without needing to build a library.
Added an additional atomics test which tests whatever version of the atomics
lib the running platform would actually use.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
class Item_func_concat :public Item_str_func
29
29
{
30
 
  Session &session;
31
30
  String tmp_value;
32
31
public:
33
 
  Item_func_concat(Session &session_arg, List<Item> &list) :
34
 
    Item_str_func(list),
35
 
    session(session_arg)
36
 
  {}
37
 
 
38
 
  Item_func_concat(Session &session_arg, Item *a, Item *b) :
39
 
    Item_str_func(a, b),
40
 
    session(session_arg)
41
 
  {}
42
 
 
 
32
  Item_func_concat(List<Item> &list) :Item_str_func(list) {}
 
33
  Item_func_concat(Item *a,Item *b) :Item_str_func(a,b) {}
43
34
  String *val_str(String *);
44
35
  void fix_length_and_dec();
45
36
  const char *func_name() const { return "concat"; }
47
38
 
48
39
class Item_func_concat_ws :public Item_str_func
49
40
{
50
 
  Session &session;
51
41
  String tmp_value;
52
42
public:
53
 
  Item_func_concat_ws(Session &session_arg, List<Item> &list) :
54
 
    Item_str_func(list),
55
 
    session(session_arg)
56
 
  {}
 
43
  Item_func_concat_ws(List<Item> &list) :Item_str_func(list) {}
57
44
  String *val_str(String *);
58
45
  void fix_length_and_dec();
59
46
  const char *func_name() const { return "concat_ws"; }