~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tmp_table_param.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-04 19:11:47 UTC
  • mto: This revision was merged to the branch mainline in revision 2367.
  • Revision ID: olafvdspek@gmail.com-20110704191147-s99ojek811zi1fzj
RemoveĀ unusedĀ Name_resolution_context::error_reporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
 
21
 
#ifndef DRIZZLED_TMP_TABLE_PARAM_H
22
 
#define DRIZZLED_TMP_TABLE_PARAM_H
23
 
 
24
 
namespace drizzled
25
 
{
 
21
#pragma once
 
22
 
 
23
#include <plugin/myisam/myisam.h>
 
24
 
 
25
namespace drizzled {
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 *table_charset;
 
72
  const charset_info_st *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 */