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 |
*
|
|
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.
|
390.1.2
by Monty Taylor
Fixed copyright headers in drizzled/ |
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 |
*/
|
|
243.1.5
by Jay Pipes
* Pulled the remainder of the log and parse stuff out into |
19 |
|
2234
by Brian Aker
Mass removal of ifdef/endif in favor of pragma once. |
20 |
#pragma once
|
243.1.5
by Jay Pipes
* Pulled the remainder of the log and parse stuff out into |
21 |
|
2119.4.1
by Monty Taylor
Turns on -fvisibility=hidden by default. Symbols intended to be used by |
22 |
#include <string> |
23 |
||
2173.2.1
by Monty Taylor
Fixes incorrect usage of include |
24 |
#include <drizzled/definitions.h> |
25 |
#include <drizzled/common.h> |
|
26 |
#include <drizzled/lex_string.h> |
|
27 |
#include <drizzled/comp_creator.h> |
|
28 |
#include <drizzled/identifier.h> |
|
1122.2.13
by Monty Taylor
Header cleanup. |
29 |
|
2173.2.1
by Monty Taylor
Fixes incorrect usage of include |
30 |
#include <drizzled/error_t.h> |
31 |
#include <drizzled/visibility.h> |
|
2041.3.16
by Brian Aker
Merge in change so that we pull out the error_t enum out to its own |
32 |
|
2252.1.17
by Olaf van der Spek
Common fwd |
33 |
namespace drizzled { |
1241.9.61
by Monty Taylor
No more mystrings in drizzled/ |
34 |
|
2119.4.1
by Monty Taylor
Turns on -fvisibility=hidden by default. Symbols intended to be used by |
35 |
DRIZZLED_API const std::string &getCommandName(const enum_server_command& command); |
1241.9.25
by Monty Taylor
Removed global LEX_STRING ref from server_includes.h. |
36 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
37 |
bool execute_sqlcom_select(Session *session, TableList *all_tables); |
2026.2.1
by Monty Taylor
Renamed things prefixed mysql_ or mysqld_ |
38 |
bool insert_select_prepare(Session *session); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
39 |
bool update_precheck(Session *session, TableList *tables); |
40 |
bool delete_precheck(Session *session, TableList *tables); |
|
41 |
bool insert_precheck(Session *session, TableList *tables); |
|
243.1.5
by Jay Pipes
* Pulled the remainder of the log and parse stuff out into |
42 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
43 |
Item *negate_expression(Session *session, Item *expr); |
243.1.5
by Jay Pipes
* Pulled the remainder of the log and parse stuff out into |
44 |
|
2054.1.2
by Brian Aker
Rename of the Loooongggggg error type over to simply drizzled::error_t |
45 |
bool check_identifier_name(LEX_STRING *str, error_t err_code= EE_OK, |
575.4.7
by Monty Taylor
More header cleanup. |
46 |
uint32_t max_char_length= NAME_CHAR_LEN, |
47 |
const char *param_for_err_msg= ""); |
|
243.1.5
by Jay Pipes
* Pulled the remainder of the log and parse stuff out into |
48 |
|
49 |
bool check_string_byte_length(LEX_STRING *str, const char *err_msg, |
|
482
by Brian Aker
Remove uint. |
50 |
uint32_t max_byte_length); |
243.1.5
by Jay Pipes
* Pulled the remainder of the log and parse stuff out into |
51 |
bool check_string_char_length(LEX_STRING *str, const char *err_msg, |
2254
by Brian Aker
Shift CHARSET_INFO to charset_info_st |
52 |
uint32_t max_char_length, const charset_info_st * const cs, |
243.1.5
by Jay Pipes
* Pulled the remainder of the log and parse stuff out into |
53 |
bool no_error); |
54 |
||
575.4.7
by Monty Taylor
More header cleanup. |
55 |
|
2026.2.1
by Monty Taylor
Renamed things prefixed mysql_ or mysqld_ |
56 |
bool test_parse_for_slave(Session *session, char *inBuf, |
575.4.7
by Monty Taylor
More header cleanup. |
57 |
uint32_t length); |
58 |
||
2026.2.1
by Monty Taylor
Renamed things prefixed mysql_ or mysqld_ |
59 |
void reset_session_for_next_command(Session *session); |
575.4.7
by Monty Taylor
More header cleanup. |
60 |
|
2137.1.12
by Brian Aker
Remove current_session in building the error count. |
61 |
void create_select_for_variable(Session *session, const char *var_name); |
575.4.7
by Monty Taylor
More header cleanup. |
62 |
|
63 |
void init_update_queries(void); |
|
64 |
||
65 |
bool dispatch_command(enum enum_server_command command, Session *session, |
|
66 |
char* packet, uint32_t packet_length); |
|
67 |
||
2041.3.15
by Brian Aker
Cleanup error usage around identifier usage. |
68 |
bool check_simple_select(Session* session); |
575.4.7
by Monty Taylor
More header cleanup. |
69 |
|
2026.2.1
by Monty Taylor
Renamed things prefixed mysql_ or mysqld_ |
70 |
void init_select(LEX *lex); |
71 |
bool new_select(LEX *lex, bool move_down); |
|
575.4.7
by Monty Taylor
More header cleanup. |
72 |
|
2227.4.9
by Olaf van der Spek
Session::lex() |
73 |
int prepare_new_schema_table(Session*, LEX&, const std::string& schema_table_name); |
1273.13.38
by Brian Aker
Add in new show work. |
74 |
|
584.1.15
by Monty Taylor
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes. |
75 |
Item * all_any_subquery_creator(Item *left_expr, |
76 |
chooser_compare_func_creator cmp, |
|
77 |
bool all, |
|
846
by Brian Aker
Removing on typedeffed class. |
78 |
Select_Lex *select_lex); |
575.4.7
by Monty Taylor
More header cleanup. |
79 |
|
1253.1.5
by Monty Taylor
These are either dead or don't belong there. |
80 |
char* query_table_status(Session *session,const char *db,const char *table_name); |
81 |
||
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
82 |
} /* namespace drizzled */ |
83 |