~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tmp_table_param.h

Merge Monty - Added inter-plugin dependencies for controlling plugin load order

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
 
21
 
#pragma once
22
 
 
23
 
#include <plugin/myisam/myisam.h>
24
 
 
25
 
namespace drizzled {
 
21
#ifndef DRIZZLED_TMP_TABLE_PARAM_H
 
22
#define DRIZZLED_TMP_TABLE_PARAM_H
 
23
 
 
24
namespace drizzled
 
25
{
26
26
 
27
27
/*
28
28
  Param to create temporary tables when doing SELECT:s
69
69
  /* If >0 convert all blob fields to varchar(convert_blob_length) */
70
70
  uint32_t  convert_blob_length;
71
71
 
72
 
  const charset_info_st *table_charset;
 
72
  const CHARSET_INFO *table_charset;
73
73
 
74
74
  Tmp_Table_Param() :
75
75
    keyinfo(0),
110
110
 
111
111
} /* namespace drizzled */
112
112
 
 
113
#endif /* DRIZZLED_TMP_TABLE_PARAM_H */