~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/natural_join_column.h

  • Committer: Jay Pipes
  • Date: 2009-03-13 23:35:46 UTC
  • mto: This revision was merged to the branch mainline in revision 937.
  • Revision ID: jpipes@serialcoder-20090313233546-n12t6xpf71um75fo
Split index hints out into their own file, removal from sql_lex.h and sql_select.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_NATURAL_JOIN_COLUMN_H
21
21
#define DRIZZLED_NATURAL_JOIN_COLUMN_H
22
22
 
23
 
#include "drizzled/memory/sql_alloc.h"
24
 
 
25
 
namespace drizzled
26
 
{
 
23
#include <drizzled/sql_alloc.h>
27
24
 
28
25
class Field;
29
26
class TableList;
30
 
class Item;
31
27
 
32
28
/*
33
29
  Column reference of a NATURAL/USING join. Since column references in
35
31
  Field (for tables).
36
32
*/
37
33
 
38
 
class Natural_join_column: public memory::SqlAlloc
 
34
class Natural_join_column: public Sql_alloc
39
35
{
40
36
public:
41
37
  Field            *table_field; /* Column reference of table or temp view. */
57
53
  const char *db_name();
58
54
};
59
55
 
60
 
} /* namespace drizzled */
 
56
 
61
57
 
62
58
#endif /* DRIZZLED_NATURAL_JOIN_COLUMN_H */