~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_strfunc.cc

  • Committer: Monty Taylor
  • Date: 2008-10-29 21:21:57 UTC
  • mto: (520.4.26 devel)
  • mto: This revision was merged to the branch mainline in revision 570.
  • Revision ID: monty@inaugust.com-20081029212157-y3127au8tj1jxfal
Moved a bunch of crap out of common_includes.
Killed innodb_plugin_extras.h.
Made kittens happy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    (This shouldn't be needed)
26
26
*/
27
27
 
28
 
using namespace std;
29
28
#include <drizzled/server_includes.h>
30
29
#include <mysys/sha1.h>
31
30
#include <zlib.h>
32
31
#include <drizzled/query_id.h>
33
 
 
34
 
#ifdef __cplusplus
35
 
extern "C" {
36
 
#endif
37
 
 
38
 
#include <mysys/my_static.h>                    // For soundex_map
39
 
 
40
 
#ifdef __cplusplus
41
 
}
42
 
#endif
43
 
 
 
32
#include <drizzled/data_home.h>
44
33
#include <drizzled/error.h>
45
34
 
 
35
// For soundex_map
 
36
#include <mysys/my_static.h>
 
37
 
 
38
using namespace std;
 
39
 
46
40
String my_empty_string("",default_charset_info);
47
41
 
48
42