~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/ha_archive.cc

  • Committer: Joe Daly
  • Date: 2010-01-06 02:36:05 UTC
  • mfrom: (1259.4.2 staging)
  • mto: This revision was merged to the branch mainline in revision 1267.
  • Revision ID: skinny.moey@gmail.com-20100106023605-0cn3mqsrkhbq3ja0
merge trunk

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