~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tmp_table_param.h

  • Committer: Brian Aker
  • Date: 2010-02-09 21:18:30 UTC
  • mfrom: (1273.2.42)
  • Revision ID: brian@gaz-20100209211830-7vf91n0yasi0r28y
Merge Stewart.

Show diffs side-by-side

added added

removed removed

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