~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/mf_cache.cc

Merge Monty

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 "drizzled/internal/mysys_priv.h"
 
18
#include "config.h"
 
19
 
 
20
#include "drizzled/internal/my_sys.h"
19
21
#include "drizzled/internal/m_string.h"
20
22
#include "drizzled/internal/my_static.h"
21
23
#include "drizzled/my_error.h"
22
24
#include "drizzled/internal/iocache.h"
23
25
 
 
26
namespace drizzled
 
27
{
 
28
namespace internal
 
29
{
24
30
 
25
31
        /*
26
32
        ** Open tempfile cached by IO_CACHE
88
94
  }
89
95
  return;
90
96
}
 
97
 
 
98
} /* namespace internal */
 
99
} /* namespace drizzled */