~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Olaf van der Spek
  • Date: 2011-02-28 14:09:50 UTC
  • mfrom: (2207 bootstrap)
  • mto: (2209.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2210.
  • Revision ID: olafvdspek@gmail.com-20110228140950-2nu0hyzhuww3wssx
Merge trunk

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
};