Drizzled Public API Documentation

name_resolution_context.h
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, Inc.
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 
20 #pragma once
21 
22 #include <drizzled/item.h>
23 
24 namespace drizzled {
25 
44 {
45 public:
51 
74 
80  Select_Lex *select_lex;
81 
88 
93  SecurityContext *security_ctx;
94 
96  :
97  outer_context(0),
98  table_list(0),
99  select_lex(0),
100  security_ctx(0)
101  {
102  }
103 
104  inline void init()
105  {
106  resolve_in_select_list= false;
107  first_name_resolution_table= NULL;
108  last_name_resolution_table= NULL;
109  }
110 
111  inline void resolve_in_table_list_only(TableList *tables)
112  {
113  table_list= first_name_resolution_table= tables;
114  resolve_in_select_list= false;
115  }
116 };
117 
118 } /* namespace drizzled */
119 
TODO: Rename this file - func.h is stupid.
Name_resolution_context * outer_context