~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/info_schema.cc

  • Committer: Brian Aker
  • Date: 2010-02-04 15:58:21 UTC
  • mfrom: (1280.1.9 build)
  • Revision ID: brian@gaz-20100204155821-bi4txluiivy043sb
Rollup of Brian, Jay

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
 */