~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/ha_archive.cc

  • Committer: Brian Aker
  • Date: 2008-11-20 00:47:31 UTC
  • mfrom: (589.1.3 devel)
  • Revision ID: brian@tangent.org-20081120004731-lsjndrno3genuun1
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
#include <drizzled/common_includes.h>
18
18
#include <drizzled/field.h>
 
19
#include <drizzled/field/blob.h>
 
20
#include <drizzled/field/timestamp.h>
19
21
#include <storage/myisam/myisam.h>
20
22
#include <drizzled/table.h>
21
23
#include <drizzled/session.h>
23
25
#include <storage/archive/ha_archive.h>
24
26
 
25
27
/*
26
 
  First, if you want to understand storage engines you should look at 
27
 
  ha_example.cc and ha_example.h. 
 
28
  First, if you want to understand storage engines you should look at
 
29
  ha_example.cc and ha_example.h.
28
30
 
29
31
  This example was written as a test case for a customer who needed
30
32
  a storage engine without indexes that could compress data very well.