~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/enum.h

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
{
26
26
 
27
27
/**
28
 
  Query type constants.
29
 
 
30
 
  QT_ORDINARY -- ordinary SQL query.
31
 
  QT_IS -- SQL query to be shown in INFORMATION_SCHEMA (in utf8 and without
32
 
  character set introducers).
33
 
 
34
 
  @TODO
35
 
 
36
 
  Move this out of here once Stew's done with UDF breakout.  The following headers need it:
37
 
 
38
 
    sql_lex.h --> included by session.h
39
 
    item.h
40
 
    table.h
41
 
    item_func.h
42
 
    item_subselect.h
43
 
    item_timefunc.h
44
 
    item_sum.h
45
 
    item_cmpfunc.h
46
 
    item_strfunc.h
47
 
*/
48
 
enum enum_query_type
49
 
{
50
 
  QT_ORDINARY,
51
 
  QT_IS
52
 
};
53
 
 
54
 
 
55
 
/**
56
28
 * @TODO Move to a separate header?
57
29
 *
58
30
 * It's needed by item.h and field.h, which are both inter-dependent