~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common_includes.h

  • Committer: Monty Taylor
  • Date: 2008-11-17 23:20:25 UTC
  • mto: (589.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081117232025-01m5jfd4l9cn93kb
Removed field.h from common_includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
/* Cross-platform portability code and standard includes */
40
40
#include <drizzled/global.h>
 
41
/* Contains system-wide constants and #defines */
 
42
#include <drizzled/definitions.h>
 
43
/* System-wide common data structures */
 
44
#include <drizzled/structs.h>
 
45
 
41
46
/* Lots of system-wide struct definitions like IO_CACHE,
42
47
   prototypes for all my_* functions */
43
48
#include <mysys/my_sys.h>
44
49
/* Custom C string functions */
45
50
#include <mystrings/m_string.h>
46
51
/* Defines for the storage engine handler -- i.e. HA_XXX defines */
47
 
#include <drizzled/base.h>                                      /* Needed by field.h */
 
52
/* Needed by field.h */
 
53
#include <drizzled/base.h>
 
54
 
48
55
/* The <strong>INTERNAL</strong> plugin API - not the external, or public, server plugin API */
49
 
#include "sql_plugin.h"
50
 
/* Contains system-wide constants and #defines */
51
 
#include <drizzled/definitions.h>
52
 
/* System-wide common data structures */
53
 
#include <drizzled/structs.h>
 
56
#include <drizzled/sql_plugin.h>
54
57
 
55
58
 
56
59
/**
73
76
#define current_session _current_session()
74
77
 
75
78
 
76
 
/* Drizzle server data type class definitions */
77
 
#include <drizzled/field.h>
78
 
 
79
 
 
80
79
#include <drizzled/sql_class.h>
81
80
 
82
81