~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tmp_table_param.h

  • Committer: Brian Aker
  • Date: 2009-12-08 23:37:35 UTC
  • mfrom: (1192.3.82 pandora-build)
  • mto: This revision was merged to the branch mainline in revision 1241.
  • Revision ID: brian@gaz-20091208233735-6zfhecyxizlw8bub
Merge range fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
21
21
#ifndef DRIZZLED_TMP_TABLE_PARAM_H
22
22
#define DRIZZLED_TMP_TABLE_PARAM_H
23
23
 
24
 
namespace drizzled
25
 
{
26
 
 
27
24
/*
28
25
  Param to create temporary tables when doing SELECT:s
29
26
  NOTE
30
27
    This structure is copied using memcpy as a part of JOIN.
31
28
*/
32
29
 
33
 
class Tmp_Table_Param :public memory::SqlAlloc
 
30
class Tmp_Table_Param :public Sql_alloc
34
31
{
35
32
private:
36
33
  /* Prevent use of these (not safe because of lists and copy_field) */
38
35
  void operator=(Tmp_Table_Param &);
39
36
 
40
37
public:
41
 
  KeyInfo *keyinfo;
 
38
  KEY *keyinfo;
42
39
  List<Item> copy_funcs;
43
40
  List<Item> save_copy_funcs;
44
41
  CopyField *copy_field, *copy_field_end;
70
67
  uint32_t  convert_blob_length;
71
68
 
72
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;
73
76
 
74
 
  Tmp_Table_Param() :
75
 
    keyinfo(0),
76
 
    copy_funcs(),
77
 
    save_copy_funcs(),
78
 
    copy_field(0),
79
 
    copy_field_end(0),
80
 
    save_copy_field(0),
81
 
    save_copy_field_end(0),
82
 
    group_buff(0),
83
 
    items_to_copy(0),
84
 
    recinfo(0),
85
 
    start_recinfo(0),
86
 
    end_write_records(0),
87
 
    field_count(0),
88
 
    sum_func_count(0),
89
 
    func_count(0),
90
 
    hidden_field_count(0),
 
77
  Tmp_Table_Param()
 
78
    :copy_field(0),
91
79
    group_parts(0),
92
80
    group_length(0),
93
81
    group_null_parts(0),
94
 
    quick_group(0),
95
 
    using_indirect_summary_function(false),
96
82
    schema_table(false),
97
83
    precomputed_group_by(false),
98
84
    force_copy_fields(false),
99
85
    convert_blob_length(0),
100
 
    table_charset(0)
 
86
    bit_fields_as_long(false)
101
87
  {}
102
 
 
103
88
  ~Tmp_Table_Param()
104
89
  {
105
90
    cleanup();
108
93
  void cleanup(void);
109
94
};
110
95
 
111
 
} /* namespace drizzled */
112
 
 
113
96
#endif /* DRIZZLED_TMP_TABLE_PARAM_H */