Drizzled Public API Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
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
43
class
Name_resolution_context
:
public
memory::SqlAlloc
44
{
45
public
:
50
Name_resolution_context
*
outer_context
;
51
60
TableList
*
table_list
;
68
TableList
*
first_name_resolution_table
;
73
TableList
*
last_name_resolution_table
;
74
80
Select_Lex *
select_lex
;
81
87
bool
resolve_in_select_list
;
88
93
SecurityContext *
security_ctx
;
94
95
Name_resolution_context
()
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
drizzled::memory::SqlAlloc
Definition:
sql_alloc.h:34
drizzled::Name_resolution_context::security_ctx
SecurityContext * security_ctx
Definition:
name_resolution_context.h:93
drizzled::Name_resolution_context
Definition:
name_resolution_context.h:43
drizzled::TableList
Definition:
table_list.h:58
drizzled::Name_resolution_context::resolve_in_select_list
bool resolve_in_select_list
Definition:
name_resolution_context.h:87
drizzled::Name_resolution_context::table_list
TableList * table_list
Definition:
name_resolution_context.h:60
drizzled::Name_resolution_context::first_name_resolution_table
TableList * first_name_resolution_table
Definition:
name_resolution_context.h:68
drizzled::Name_resolution_context::last_name_resolution_table
TableList * last_name_resolution_table
Definition:
name_resolution_context.h:73
drizzled::Name_resolution_context::select_lex
Select_Lex * select_lex
Definition:
name_resolution_context.h:80
drizzled::Name_resolution_context::outer_context
Name_resolution_context * outer_context
Definition:
name_resolution_context.h:50
drizzled
name_resolution_context.h
Generated on Wed Feb 12 2014 01:07:48 for drizzle by
1.8.6