~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Lee Bieber
  • Date: 2011-01-25 02:10:42 UTC
  • mfrom: (2109.1.4 build)
  • Revision ID: kalebral@gmail.com-20110125021042-ocqa0v509ae7fmtz
Need to add a "drop table a" in execute.wait test
Add execute test suite to regular test run
Merge Lee - fix second part of 705699, check for both client and server before building and testing rabbitmq plugin
Merge Shrews - Changes TransactionServices methods to use references to Session objects instead of pointers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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;