851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
1999.6.1
by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file |
4 |
* Copyright (C) 2008 Sun Microsystems, Inc.
|
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
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 |
||
2234
by Brian Aker
Mass removal of ifdef/endif in favor of pragma once. |
21 |
#pragma once
|
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
22 |
|
2173.2.1
by Monty Taylor
Fixes incorrect usage of include |
23 |
#include <drizzled/lex_string.h> |
24 |
#include <drizzled/memory/sql_alloc.h> |
|
25 |
#include <drizzled/util/test.h> |
|
1638.10.77
by Stewart Smith
table_ident.h was missing a dependency on session.h for: ./drizzled/table_ident.h:53: error: ‘empty_c_string’ was not declared in this scope |
26 |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
27 |
namespace drizzled |
28 |
{
|
|
29 |
||
2154.2.3
by Brian Aker
Update headers (more removal of session). |
30 |
extern char empty_c_string[1]; |
31 |
extern char internal_table_name[2]; |
|
32 |
||
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
33 |
/* Structure for db & table in sql_yacc */
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
34 |
class Table_ident :public memory::SqlAlloc |
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
35 |
{
|
36 |
public: |
|
37 |
LEX_STRING db; |
|
38 |
LEX_STRING table; |
|
39 |
Select_Lex_Unit *sel; |
|
971.3.59
by Eric Day
Removed client_capabilities from session and pushed functionality into protocol plugin. |
40 |
inline Table_ident(LEX_STRING db_arg, LEX_STRING table_arg) |
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
41 |
:table(table_arg), sel((Select_Lex_Unit *)0) |
42 |
{
|
|
971.3.59
by Eric Day
Removed client_capabilities from session and pushed functionality into protocol plugin. |
43 |
db= db_arg; |
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
44 |
}
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
45 |
explicit Table_ident(LEX_STRING table_arg) |
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
46 |
:table(table_arg), sel((Select_Lex_Unit *)0) |
47 |
{
|
|
48 |
db.str=0; |
|
49 |
}
|
|
50 |
/*
|
|
51 |
This constructor is used only for the case when we create a derived
|
|
52 |
table. A derived table has no name and doesn't belong to any database.
|
|
53 |
Later, if there was an alias specified for the table, it will be set
|
|
54 |
by add_table_to_list.
|
|
55 |
*/
|
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
56 |
explicit Table_ident(Select_Lex_Unit *s) : sel(s) |
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
57 |
{
|
58 |
/* We must have a table name here as this is used with add_table_to_list */
|
|
59 |
db.str= empty_c_string; /* a subject to casedn_str */ |
|
60 |
db.length= 0; |
|
61 |
table.str= internal_table_name; |
|
62 |
table.length=1; |
|
63 |
}
|
|
64 |
bool is_derived_table() const { return test(sel); } |
|
65 |
inline void change_db(char *db_name) |
|
66 |
{
|
|
895
by Brian Aker
Completion (?) of uint conversion. |
67 |
db.str= db_name; db.length= (uint32_t) strlen(db_name); |
851
by Brian Aker
Class rewrite of Session (aka get all of the junk out) |
68 |
}
|
69 |
};
|
|
70 |
||
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
71 |
} /* namespace drizzled */ |
72 |