~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Monty Taylor
  • Date: 2010-12-24 07:15:43 UTC
  • mto: This revision was merged to the branch mainline in revision 2029.
  • Revision ID: mordred@inaugust.com-20101224071543-ab082y5circku6v5
Renamed things prefixed mysql_ or mysqld_

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
124
124
extern const std::string UNKNOWN_STRING;
125
125
extern const std::string DEFAULT_DEFINITION_FILE_EXT;
126
126
 
 
127
 
127
128
/*
128
129
  StorageEngine is a singleton structure - one instance per storage engine -
129
130
  to provide access to storage engine functionality that works on the
136
137
class StorageEngine : public Plugin,
137
138
                      public MonitoredInTransaction
138
139
{
 
140
  friend class SEAPITester;
139
141
public:
140
142
  typedef uint64_t Table_flags;
141
143