~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/internal_dictionary.cc

  • Committer: Lee Bieber
  • Date: 2010-11-07 19:34:48 UTC
  • mfrom: (1910.1.2 build)
  • Revision ID: kalebral@gmail.com-20101107193448-64kdu912qej354sh
Merge Stewart - including adapting and expanding the "differences from mysql" page from the wiki.
Merge Stewart - fix bug 668143: drizzleslap with --commit runs second iteration data load in a transaction

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (C) 2007, 2009, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 2007, 2009, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
22
22
 
23
23
#include "drizzled/current_session.h"
24
24
 
 
25
extern "C" {
25
26
#include "univ.i"
26
27
#include "btr0sea.h"
27
28
#include "os0file.h"
51
52
#include "ha_prototypes.h"
52
53
#include "ut0mem.h"
53
54
#include "ibuf0ibuf.h"
 
55
#include "mysql_addons.h"
 
56
}
54
57
#include "handler0vars.h"
55
58
 
56
59
using namespace drizzled;
65
68
  add_field("TABLE_NAME");
66
69
}
67
70
 
68
 
static void my_dict_print_callback(void *ptr, const char *table_name)
 
71
extern "C" {
 
72
  void my_dict_print_callback(void *ptr, const char *);
 
73
}
 
74
 
 
75
void my_dict_print_callback(void *ptr, const char *table_name)
69
76
{
70
77
  Recorder *myrec= static_cast<Recorder *>(ptr);
71
78