~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join_cache.cc

Modernize our call to the parser, no more casting required.

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-2009 Sun Microsystems
 
4
 *  Copyright (C) 2008-2009 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
28
28
 */
29
29
 
30
30
#include "config.h"
 
31
 
31
32
#include "drizzled/sql_select.h" /* include join.h */
32
33
#include "drizzled/field/blob.h"
33
34
#include "drizzled/drizzled.h"
34
35
#include "drizzled/internal/my_sys.h"
 
36
#include <drizzled/table.h>
 
37
#include <drizzled/session.h>
35
38
 
36
39
#include <algorithm>
37
40