~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Lee Bieber
  • Date: 2011-02-25 23:59:53 UTC
  • mfrom: (2202.1.2 build)
  • Revision ID: kalebral@gmail.com-20110225235953-b3gz1ctk69b04n63
Merge Monty - fixes sqla/python mysqldb date processing
Merge Olaf - refactor include files

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
  @defgroup Semantic_Analysis Semantic Analysis
25
25
*/
26
26
#include <drizzled/message/table.pb.h>
27
 
 
28
 
#include <drizzled/plugin/function.h>
29
27
#include <drizzled/name_resolution_context.h>
30
 
#include <drizzled/item/subselect.h>
31
28
#include <drizzled/table_list.h>
32
29
#include <drizzled/function/math/real.h>
33
30
#include <drizzled/key_part_spec.h>
38
35
#include <bitset>
39
36
#include <string>
40
37
 
41
 
namespace drizzled
42
 
{
 
38
namespace drizzled {
 
39
 
 
40
namespace plugin { class Function; }
43
41
 
44
42
class st_lex_symbol;
45
43
class select_result_interceptor;
391
389
  inline bool is_union ();
392
390
 
393
391
  friend void lex_start(Session *session);
394
 
  friend int subselect_union_engine::exec();
395
392
 
396
393
  List<Item> *get_unit_column_types();
397
394
};