21
21
/* Structs that defines the Table */
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
32
class Singular : public Table
29
class TableShareInstance : public Table
35
32
bool _has_variable_width;
39
_share(message::Table::INTERNAL),
35
TableShareInstance(TableIdentifier::Type type_arg) :
40
37
_has_variable_width(false)
44
Singular(Session *session, List<CreateField> &field_list);
46
46
TableShare *getMutableShare(void)
51
void setShare(TableShare *)
56
51
const TableShare *getShare(void) const
61
bool hasShare() const { return true; }
65
56
bool hasVariableWidth() const
67
58
return _has_variable_width;
70
bool create_myisam_tmp_table(KeyInfo *keyinfo,
71
MI_COLUMNDEF *start_recinfo,
72
MI_COLUMNDEF **recinfo,
74
void setup_tmp_table_column_bitmaps();
75
bool open_tmp_table();
77
61
void setVariableWidth()
79
63
_has_variable_width= true;
68
this->free_tmp_table(this->in_use);
85
} /* namespace table */
86
72
} /* namespace drizzled */
88
#endif /* DRIZZLED_TABLE_SINGULAR_H */
74
#endif /* DRIZZLED_TABLE_SHARE_INSTANCE_H */