~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

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
16
16
 
17
17
*****************************************************************************/
18
18
 
19
 
#include "config.h"
 
19
#include <config.h>
20
20
 
21
21
#include "internal_dictionary.h"
22
22
 
23
 
#include "drizzled/current_session.h"
 
23
#include <drizzled/current_session.h>
24
24
 
25
 
extern "C" {
26
25
#include "univ.i"
27
26
#include "btr0sea.h"
28
27
#include "os0file.h"
52
51
#include "ha_prototypes.h"
53
52
#include "ut0mem.h"
54
53
#include "ibuf0ibuf.h"
55
 
#include "mysql_addons.h"
56
 
}
57
54
#include "handler0vars.h"
58
55
 
59
56
using namespace drizzled;
68
65
  add_field("TABLE_NAME");
69
66
}
70
67
 
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)
 
68
static void my_dict_print_callback(void *ptr, const char *table_name)
76
69
{
77
70
  Recorder *myrec= static_cast<Recorder *>(ptr);
78
71