~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/info_schema.cc

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
#include "config.h"
62
62
#include <drizzled/session.h>
63
63
#include <drizzled/show.h>
 
64
#include <drizzled/util/functors.h>
64
65
 
65
66
#include "transaction_log.h"
66
67
#include "transaction_log_entry.h"
80
81
extern TransactionLog *transaction_log; /* the singleton transaction log */
81
82
extern TransactionLogIndex *transaction_log_index; /* the singleton transaction log index */
82
83
 
83
 
class DeletePtr
84
 
{
85
 
public:
86
 
  template<typename T>
87
 
  inline void operator()(const T *ptr) const
88
 
  {
89
 
    delete ptr;
90
 
  }
91
 
};
92
 
 
93
84
/*
94
85
 * Vectors of columns for I_S tables.
95
86
 */