~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Andrew Hutchings
  • Date: 2011-02-01 10:23:22 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110201102322-oxztcyrjzg3c7yta
Fix counters cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#pragma once
 
20
#ifndef DRIZZLED_HANDLER_STRUCTS_H
 
21
#define DRIZZLED_HANDLER_STRUCTS_H
21
22
 
22
23
#if TIME_WITH_SYS_TIME
23
24
# include <sys/time.h>
31
32
#endif
32
33
 
33
34
#include <drizzled/base.h>
 
35
#include <drizzled/structs.h>
34
36
#include <drizzled/definitions.h>
35
37
#include <drizzled/lex_string.h>
36
 
#include <drizzled/structs.h>
37
 
 
38
 
namespace drizzled {
 
38
#include "drizzled/global_charset_info.h"
 
39
 
 
40
namespace drizzled
 
41
{
 
42
 
 
43
namespace plugin
 
44
{
 
45
class StorageEngine;
 
46
}
39
47
 
40
48
typedef struct st_ha_create_information
41
49
{
42
 
  const charset_info_st *table_charset, *default_table_charset;
 
50
  const CHARSET_INFO *table_charset, *default_table_charset;
43
51
  const char *alias;
44
52
  uint64_t auto_increment_value;
45
53
  uint32_t table_options;
130
138
 
131
139
} /* namespace drizzled */
132
140
 
 
141
#endif /* DRIZZLED_HANDLER_STRUCTS_H */