~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/mf_cache.cc

  • Committer: Tim Penhey
  • Date: 2010-01-20 02:39:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1275.
  • Revision ID: tim.penhey@canonical.com-20100120023901-8teeunid6gwlthzx
Add in a rot 13 function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
/* Open a temporary file and cache it with io_cache. Delete it on close */
17
17
 
18
 
#include "config.h"
19
 
 
20
 
#include "drizzled/internal/my_sys.h"
 
18
#include "drizzled/internal/mysys_priv.h"
21
19
#include "drizzled/internal/m_string.h"
22
20
#include "drizzled/internal/my_static.h"
 
21
#include "drizzled/my_error.h"
23
22
#include "drizzled/internal/iocache.h"
24
 
#include "drizzled/error.h"
25
23
 
26
 
namespace drizzled
27
 
{
28
 
namespace internal
29
 
{
30
24
 
31
25
        /*
32
26
        ** Open tempfile cached by IO_CACHE
94
88
  }
95
89
  return;
96
90
}
97
 
 
98
 
} /* namespace internal */
99
 
} /* namespace drizzled */