~drizzle-trunk/drizzle/development

390.1.2 by Monty Taylor
Fixed copyright headers in drizzled/
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 Sun Microsystems
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
327.2.4 by Brian Aker
Refactoring table.h
20
#ifndef DRIZZLED_NATURAL_JOIN_COLUMN_H
21
#define DRIZZLED_NATURAL_JOIN_COLUMN_H
22
1253.1.4 by Monty Taylor
Moved sql_alloc into memory.
23
#include "drizzled/memory/sql_alloc.h"
520.8.6 by Monty Taylor
Removed handler from common_includes.
24
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
25
namespace drizzled
26
{
27
327.2.4 by Brian Aker
Refactoring table.h
28
class Field;
520.8.6 by Monty Taylor
Removed handler from common_includes.
29
class TableList;
1237.9.4 by Padraig O'Sullivan
Removed the inclusion of drizzled/field.h in the server_includes header file.
30
class Item;
327.2.4 by Brian Aker
Refactoring table.h
31
32
/*
33
  Column reference of a NATURAL/USING join. Since column references in
34
  joins can be both from views and stored tables, may point to either a
769 by Brian Aker
Removing dead field translator code.
35
  Field (for tables).
327.2.4 by Brian Aker
Refactoring table.h
36
*/
37
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
38
class Natural_join_column: public memory::SqlAlloc
327.2.4 by Brian Aker
Refactoring table.h
39
{
40
public:
41
  Field            *table_field; /* Column reference of table or temp view. */
42
  TableList *table_ref; /* Original base table/view reference. */
43
  /*
44
    True if a common join column of two NATURAL/USING join operands. Notice
45
    that when we have a hierarchy of nested NATURAL/USING joins, a column can
46
    be common at some level of nesting but it may not be common at higher
47
    levels of nesting. Thus this flag may change depending on at which level
48
    we are looking at some column.
49
  */
50
  bool is_common;
51
public:
52
  Natural_join_column(Field *field_param, TableList *tab);
53
  const char *name();
520.1.22 by Brian Aker
Second pass of thd cleanup
54
  Item *create_item(Session *session);
327.2.4 by Brian Aker
Refactoring table.h
55
  Field *field();
56
  const char *table_name();
57
  const char *db_name();
58
};
59
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
60
} /* namespace drizzled */
327.2.4 by Brian Aker
Refactoring table.h
61
62
#endif /* DRIZZLED_NATURAL_JOIN_COLUMN_H */