~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

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
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
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>
36
35
#include <drizzled/definitions.h>
37
36
#include <drizzled/lex_string.h>
38
 
#include "drizzled/global_charset_info.h"
 
37
#include <drizzled/structs.h>
39
38
 
40
39
namespace drizzled
41
40
{
42
41
 
 
42
struct charset_info_st;
 
43
 
43
44
namespace plugin
44
45
{
45
46
class StorageEngine;
47
48
 
48
49
typedef struct st_ha_create_information
49
50
{
50
 
  const CHARSET_INFO *table_charset, *default_table_charset;
 
51
  const charset_info_st *table_charset, *default_table_charset;
51
52
  const char *alias;
52
53
  uint64_t auto_increment_value;
53
54
  uint32_t table_options;
90
91
} HA_ALTER_INFO;
91
92
 
92
93
 
93
 
typedef struct st_key_create_information
 
94
typedef struct key_create_information_st
94
95
{
95
96
  enum ha_key_alg algorithm;
96
97
  uint32_t block_size;