~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/hp_static.cc

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
16
/*
17
17
  Static variables for heap library. All definied here for easy making of
18
18
  a shared library
19
19
*/
20
20
 
21
 
#include "heapdef.h"
22
 
 
23
 
LIST *heap_open_list=0,*heap_share_list=0;
 
21
#include <config.h>
 
22
#include "heap.h"
 
23
#include <list>
 
24
 
 
25
using namespace std;
 
26
 
 
27
list<HP_INFO *> heap_open_list;
 
28
list<HP_SHARE *> heap_share_list;
 
29