~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Patrick Crews
  • Date: 2010-12-07 20:02:50 UTC
  • Revision ID: gleebix@gmail.com-20101207200250-6a27jgqalgw5bsb5
Added disabled.def file to disable drizzleslap due to Bug#684269.  Need to skip for tarball release this round

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
32
32
#endif
33
33
 
34
34
#include <drizzled/base.h>
 
35
#include <drizzled/structs.h>
35
36
#include <drizzled/definitions.h>
36
37
#include <drizzled/lex_string.h>
37
 
#include <drizzled/structs.h>
 
38
#include "drizzled/global_charset_info.h"
38
39
 
39
40
namespace drizzled
40
41
{
41
42
 
42
 
struct charset_info_st;
43
 
 
44
43
namespace plugin
45
44
{
46
45
class StorageEngine;
48
47
 
49
48
typedef struct st_ha_create_information
50
49
{
51
 
  const charset_info_st *table_charset, *default_table_charset;
 
50
  const CHARSET_INFO *table_charset, *default_table_charset;
52
51
  const char *alias;
53
52
  uint64_t auto_increment_value;
54
53
  uint32_t table_options;
91
90
} HA_ALTER_INFO;
92
91
 
93
92
 
94
 
typedef struct key_create_information_st
 
93
typedef struct st_key_create_information
95
94
{
96
95
  enum ha_key_alg algorithm;
97
96
  uint32_t block_size;