~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_class.cc

  • Committer: ysano
  • Date: 2008-11-08 07:03:47 UTC
  • mto: This revision was merged to the branch mainline in revision 584.
  • Revision ID: ysano@vm-20081108070347-cvsvini2pqe8g7eb
Rename mysql to drizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
extern "C" int mysql_tmpfile(const char *prefix)
260
260
{
261
261
  char filename[FN_REFLEN];
262
 
  File fd = create_temp_file(filename, mysql_tmpdir, prefix,
 
262
  File fd = create_temp_file(filename, drizzle_tmpdir, prefix,
263
263
                             O_CREAT | O_EXCL | O_RDWR,
264
264
                             MYF(MY_WME));
265
265
  if (fd >= 0) {