~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: Monty Taylor
  • Date: 2008-10-22 21:31:15 UTC
  • Revision ID: monty@inaugust.com-20081022213115-xuxc80r939tl88p1
Renamed drizzle_common again. Removed sql_common. (empty) 
Now all we need to do is merge/disect base.h, common.h, common_includes.h, server_includes.h and globa.h (good grief)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
/* This file is originally from the mysql distribution. Coded by monty */
24
24
 
25
 
#ifdef USE_PRAGMA_INTERFACE
26
 
#pragma interface                       /* gcc class implementation */
27
 
#endif
28
25
 
29
26
#ifndef NOT_FIXED_DEC
30
27
#define NOT_FIXED_DEC                   31
31
28
#endif
32
29
 
33
 
#include <libdrizzle/drizzle_com.h>
 
30
#include <drizzled/common.h>
 
31
#include <mysys/iocache.h>
34
32
 
35
33
class String;
36
34
int sortcmp(const String *a,const String *b, const CHARSET_INFO * const cs);