~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tmp_table_param.h

it turns out that bit_fields_as_long in tmp_table_param is in fact unused. remove it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
  uint32_t  convert_blob_length;
68
68
 
69
69
  const CHARSET_INFO *table_charset;
70
 
  /*
71
 
    If true, create_tmp_field called from create_tmp_table will convert
72
 
    all BIT fields to 64-bit longs. This is a workaround the limitation
73
 
    that MEMORY tables cannot index BIT columns.
74
 
  */
75
 
  bool bit_fields_as_long;
76
70
 
77
71
  Tmp_Table_Param()
78
72
    :copy_field(0),
82
76
    schema_table(false),
83
77
    precomputed_group_by(false),
84
78
    force_copy_fields(false),
85
 
    convert_blob_length(0),
86
 
    bit_fields_as_long(false)
 
79
    convert_blob_length(0)
87
80
  {}
88
81
  ~Tmp_Table_Param()
89
82
  {