~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
class AlterInfo;
38
38
class Cursor;
39
39
 
 
40
/* Flags for conversion functions. */
 
41
static const uint32_t FN_FROM_IS_TMP(1 << 0);
 
42
static const uint32_t FN_TO_IS_TMP(1 << 0);
 
43
 
40
44
namespace drizzled { namespace message { class Table; } }
41
45
namespace drizzled { class TableIdentifier; }
42
46
 
104
108
                               uint32_t *key_count,
105
109
                               int select_field_count);
106
110
 
 
111
 
 
112
/* Conversion functions */
 
113
size_t build_tmptable_filename(char *buff, size_t bufflen);
 
114
size_t build_table_filename(char *buff, size_t bufflen, const char *db,
 
115
                            const char *table_name, bool is_tmp);
 
116
 
107
117
#endif /* DRIZZLED_SQL_TABLE_H */