~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log.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:
2217
2217
 
2218
2218
  trx_data= (binlog_trx_data*) my_malloc(sizeof(binlog_trx_data), MYF(MY_ZEROFILL));
2219
2219
  if (!trx_data ||
2220
 
      open_cached_file(&trx_data->trans_log, mysql_tmpdir,
 
2220
      open_cached_file(&trx_data->trans_log, drizzle_tmpdir,
2221
2221
                       LOG_PREFIX, binlog_cache_size, MYF(MY_WME)))
2222
2222
  {
2223
2223
    free((unsigned char*)trx_data);