~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/strfunc.cc

  • Committer: Monty Taylor
  • Date: 2009-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    (This shouldn't be needed)
26
26
*/
27
27
 
28
 
#include "config.h"
 
28
#include <drizzled/server_includes.h>
 
29
#include <mysys/sha1.h>
29
30
#include <zlib.h>
30
31
#include <drizzled/query_id.h>
 
32
#include <uuid/uuid.h>
 
33
#include <drizzled/data_home.h>
31
34
#include <drizzled/error.h>
32
35
#include <drizzled/function/str/strfunc.h>
33
36
 
34
37
// For soundex_map
35
 
#include "drizzled/internal/my_static.h"
 
38
#include <mysys/my_static.h>
36
39
 
37
40
using namespace std;
38
41
 
39
 
namespace drizzled
40
 
{
41
 
 
42
 
Item_str_func::~Item_str_func() {}
43
 
 
44
42
bool Item_str_func::fix_fields(Session *session, Item **ref)
45
43
{
46
44
  bool res= Item_func::fix_fields(session, ref);
107
105
 
108
106
String my_empty_string("",default_charset_info);
109
107
 
110
 
} /* namespace drizzled */