~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blackhole/ha_blackhole.cc

edit

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
  along with this program; if not, write to the Free Software
14
14
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
 
#include <config.h>
17
 
 
 
16
#include "config.h"
 
17
#include <drizzled/table.h>
18
18
#include <drizzled/error.h>
19
 
#include <drizzled/global_charset_info.h>
20
 
#include <drizzled/internal/m_string.h>
21
 
#include <drizzled/internal/my_pthread.h>
22
 
#include <drizzled/message/table.h>
23
 
#include <drizzled/plugin/storage_engine.h>
24
 
#include <drizzled/table.h>
25
 
 
 
19
#include "drizzled/internal/my_pthread.h"
26
20
 
27
21
#include "ha_blackhole.h"
28
22
 
29
23
#include <fcntl.h>
30
24
 
 
25
#include <string>
 
26
#include <map>
31
27
#include <fstream>
32
 
#include <map>
33
 
#include <string>
34
 
 
 
28
#include <drizzled/message/table.pb.h>
 
29
#include "drizzled/internal/m_string.h"
35
30
#include <google/protobuf/io/zero_copy_stream.h>
36
31
#include <google/protobuf/io/zero_copy_stream_impl.h>
 
32
#include "drizzled/global_charset_info.h"
37
33
 
38
34
 
39
35
using namespace std;
477
473
  "/dev/null storage engine (anything you write to it disappears)",
478
474
  PLUGIN_LICENSE_GPL,
479
475
  blackhole_init,     /* Plugin Init */
480
 
  NULL,               /* depends */
 
476
  NULL,               /* system variables */
481
477
  NULL                /* config options   */
482
478
}
483
479
DRIZZLE_DECLARE_PLUGIN_END;