~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share_instance.h

  • Committer: lbieber at stabletransit
  • Date: 2010-10-14 15:43:11 UTC
  • mfrom: (1848.1.4 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101014154311-ojsrl9uz80yvizey
Merge Travis - changing struct to C++ classes
Merge Andrew - fix bug #571579: libdrizzle unexpected hang up when using in extremely slow networking environment
Merge Andrew - fix bug #643772: Large rows cannot be read if packet_size exceeds max buffer size
Merge Andrew - fix bug #660082: libdrizzle missing rev.147
Merge Andrew - fix bug 653234: drizzledump (and other clients?) should print Password: prompt on stderr
Merge Andrew - fix bug #653438: "Enter password" prompt should not print stars, or erase them on enter
Merge Andrew - fix bug 659824: Drizzle client UTF8 processing endless loop

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
/* Structs that defines the Table */
22
22
 
23
 
#ifndef DRIZZLED_TABLE_SINGULAR_H
24
 
#define DRIZZLED_TABLE_SINGULAR_H
 
23
#ifndef DRIZZLED_TABLE_SHARE_INSTANCE_H
 
24
#define DRIZZLED_TABLE_SHARE_INSTANCE_H
25
25
 
26
26
namespace drizzled
27
27
{
28
28
 
29
 
namespace table
30
 
{
31
 
 
32
 
class Singular : public Table
 
29
class TableShareInstance : public Table
33
30
{
34
31
  TableShare _share;
35
32
  bool _has_variable_width;
36
33
 
37
34
public:
38
 
  Singular() :
39
 
    _share(message::Table::INTERNAL),
 
35
  TableShareInstance(TableIdentifier::Type type_arg) :
 
36
    _share(type_arg),
40
37
    _has_variable_width(false)
41
38
  {
42
39
  }
43
40
 
44
 
  Singular(Session *session, List<CreateField> &field_list);
 
41
  Table *getTable()
 
42
  {
 
43
    return this;
 
44
  }
45
45
 
46
46
  TableShare *getMutableShare(void)
47
47
  {
48
48
    return &_share;
49
49
  }
50
50
 
51
 
  void setShare(TableShare *)
52
 
  {
53
 
    assert(0);
54
 
  }
55
 
 
56
51
  const TableShare *getShare(void) const
57
52
  {
58
53
    return &_share;
59
54
  }
60
55
 
61
 
  bool hasShare() const { return true; }
62
 
 
63
 
  void release() {};
64
 
 
65
56
  bool hasVariableWidth() const
66
57
  {
67
58
    return _has_variable_width;
68
59
  }
69
60
 
70
 
  bool create_myisam_tmp_table(KeyInfo *keyinfo,
71
 
                               MI_COLUMNDEF *start_recinfo,
72
 
                               MI_COLUMNDEF **recinfo,
73
 
                               uint64_t options);
74
 
  void setup_tmp_table_column_bitmaps();
75
 
  bool open_tmp_table();
76
 
 
77
61
  void setVariableWidth()
78
62
  {
79
63
    _has_variable_width= true;
80
64
  }
81
65
 
82
 
  ~Singular();
 
66
  ~TableShareInstance()
 
67
  {
 
68
    this->free_tmp_table(this->in_use);
 
69
  }
83
70
};
84
71
 
85
 
} /* namespace table */
86
72
} /* namespace drizzled */
87
73
 
88
 
#endif /* DRIZZLED_TABLE_SINGULAR_H */
 
74
#endif /* DRIZZLED_TABLE_SHARE_INSTANCE_H */