~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/ha_archive.cc

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include "plugin/myisam/myisam.h"
22
22
#include "drizzled/table.h"
23
23
#include "drizzled/session.h"
24
 
#include "drizzled/internal/my_dir.h"
25
24
 
26
25
#include "ha_archive.h"
27
26
 
28
27
#include <unistd.h>
29
28
#include <fcntl.h>
 
29
#include <sys/stat.h>
30
30
 
31
31
#include <cstdio>
32
32
#include <string>
220
220
       entry_iter != entries.end(); ++entry_iter)
221
221
  {
222
222
    drizzled::CachedDirectory::Entry *entry= *entry_iter;
223
 
    string *filename= &entry->filename;
 
223
    const string *filename= &entry->filename;
224
224
 
225
225
    assert(filename->size());
226
226