~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/server_includes.h

  • Committer: Brian Aker
  • Date: 2009-11-26 18:50:02 UTC
  • mfrom: (1226.1.4 push)
  • Revision ID: brian@gaz-20091126185002-se908a2ceq9ub2rn
Mege of TableIdentifier gran patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
bool check_table_name(const char *name, uint32_t length);
214
214
 
215
215
/* Conversion functions */
216
 
size_t build_table_filename(char *buff, size_t bufflen, const char *db, 
 
216
size_t build_tmptable_filename(char *buff, size_t bufflen);
 
217
size_t build_table_filename(char *buff, size_t bufflen, const char *db,
217
218
                            const char *table_name, bool is_tmp);
218
219
 
219
220
/* Flags for conversion functions. */
220
221
#define FN_FROM_IS_TMP  (1 << 0)
221
222
#define FN_TO_IS_TMP    (1 << 1)
222
 
#define FN_IS_TMP       (FN_FROM_IS_TMP | FN_TO_IS_TMP)
223
 
#define NO_FRM_RENAME   (1 << 2)
224
223
 
225
224
inline uint32_t sql_rnd()
226
225
{