~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2003 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
1802.10.2 by Monty Taylor
Update all of the copyright headers to include the correct address.
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
1 by brian
clean slate
15
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
16
#include <config.h>
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
17
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
18
#define DRIZZLE_LEX 1
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
19
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
20
#include <drizzled/item/num.h>
21
#include <drizzled/abort_exception.h>
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
22
#include <drizzled/my_hash.h>
549 by Monty Taylor
Took gettext.h out of header files.
23
#include <drizzled/error.h>
553.1.3 by Monty Taylor
Split out nested_join.h.
24
#include <drizzled/nested_join.h>
561.1.3 by Monty Taylor
Split some more things out of common_includes.h.
25
#include <drizzled/query_id.h>
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
26
#include <drizzled/transaction_services.h>
520.8.2 by Monty Taylor
Moved sql_parse.h and sql_error.h out of common_includes.
27
#include <drizzled/sql_parse.h>
520.6.7 by Monty Taylor
Moved a bunch of crap out of common_includes.
28
#include <drizzled/data_home.h>
575.4.7 by Monty Taylor
More header cleanup.
29
#include <drizzled/sql_base.h>
30
#include <drizzled/show.h>
670.1.20 by Monty Taylor
Renamed functions to function... everything else is singular.
31
#include <drizzled/function/time/unix_timestamp.h>
32
#include <drizzled/function/get_system_var.h>
584.4.7 by Monty Taylor
Removed a big bank of includes from item.h.
33
#include <drizzled/item/cmpfunc.h>
642.1.20 by Lee
header file clean up
34
#include <drizzled/item/null.h>
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.
35
#include <drizzled/session.h>
2148.7.11 by Brian Aker
Remove some of the dependencies from session.h so that we make the include
36
#include <drizzled/session/cache.h>
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.
37
#include <drizzled/sql_load.h>
670.2.4 by Monty Taylor
Removed more stuff from the headers.
38
#include <drizzled/lock.h>
837 by Brian Aker
Reworked some classes out of session.h
39
#include <drizzled/select_send.h>
971.6.1 by Eric Day
Renamed Protocol to Client, cleaned up some unnecessary methods along the way.
40
#include <drizzled/plugin/client.h>
1100.3.30 by Padraig O'Sullivan
Renamed the Command class to be Statement. Renamed the command directory to
41
#include <drizzled/statement.h>
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
42
#include <drizzled/statement/alter_table.h>
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
43
#include <drizzled/probes.h>
44
#include <drizzled/global_charset_info.h>
1100.3.1 by Padraig O'Sullivan
Beginnings of reworking the mysql_execute_command() method.
45
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
46
#include <drizzled/plugin/logging.h>
47
#include <drizzled/plugin/query_rewrite.h>
48
#include <drizzled/plugin/query_cache.h>
49
#include <drizzled/plugin/authorization.h>
50
#include <drizzled/optimizer/explain_plan.h>
51
#include <drizzled/pthread_globals.h>
52
#include <drizzled/plugin/event_observer.h>
53
#include <drizzled/visibility.h>
1130.1.1 by Monty Taylor
Merged in plugin-slot-reorg patches.
54
2159.2.5 by Brian Aker
Merge in move of schema.
55
#include <drizzled/schema.h>
56
1241.9.59 by Monty Taylor
Removed the first mystrings header.
57
#include <limits.h>
58
590.2.18 by Monty Taylor
Changed the bitset<32> to a bitset<5>. Made the int constants into bitset constants.
59
#include <bitset>
1067.4.4 by Nathan Williams
The rest of the files in the drizzled directory were purged of the cmin macro and replace with std::min (except for the definition in globals.h and 1 usage in stacktrace.cc).
60
#include <algorithm>
1878.10.1 by Billy Earney
removed my_micro_time, my_micro_time_and_time, along with my_getsystime and replaced with boost:date_time for compatibility between OS.
61
#include <boost/date_time.hpp>
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
62
#include <drizzled/internal/my_sys.h>
1241.9.62 by Monty Taylor
Removed plugin/myisam/myisam.h from session.h
63
590.2.18 by Monty Taylor
Changed the bitset<32> to a bitset<5>. Made the int constants into bitset constants.
64
using namespace std;
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.
65
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
66
extern int DRIZZLEparse(void *session); // from sql_yacc.cc
67
68
namespace drizzled
69
{
70
1039.1.16 by Brian Aker
A lot of little cleanups (most based off lcov)
71
/* Prototypes */
1085.1.2 by Monty Taylor
Fixed -Wmissing-declarations
72
bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize);
1165.1.48 by Stewart Smith
make parse_sql static to sql_parse.cc
73
static bool parse_sql(Session *session, Lex_input_stream *lip);
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
74
void parse(Session *session, const char *inBuf, uint32_t length);
1085.1.2 by Monty Taylor
Fixed -Wmissing-declarations
75
1 by brian
clean slate
76
/**
77
  @defgroup Runtime_Environment Runtime Environment
78
  @{
79
*/
80
629.2.7 by Monty Taylor
Fixed a couple of memory buffer size issues.
81
extern size_t my_thread_stack_size;
520.6.7 by Monty Taylor
Moved a bunch of crap out of common_includes.
82
extern const CHARSET_INFO *character_set_filesystem;
1 by brian
clean slate
83
2119.4.1 by Monty Taylor
Turns on -fvisibility=hidden by default. Symbols intended to be used by
84
namespace
85
{
86
87
static const std::string command_name[COM_END+1]={
88
  "Sleep",
89
  "Quit",
90
  "Init DB",
91
  "Query",
92
  "Shutdown",
93
  "Connect",
94
  "Ping",
95
  "Error"  // Last command number
1 by brian
clean slate
96
};
97
2119.4.1 by Monty Taylor
Turns on -fvisibility=hidden by default. Symbols intended to be used by
98
}
99
1 by brian
clean slate
100
const char *xa_state_names[]={
101
  "NON-EXISTING", "ACTIVE", "IDLE", "PREPARED"
102
};
103
104
/**
105
  Mark all commands that somehow changes a table.
106
107
  This is used to check number of updates / hour.
108
109
  sql_command is actually set to SQLCOM_END sometimes
110
  so we need the +1 to include it in the array.
111
112
  See COMMAND_FLAG_xxx for different type of commands
113
     2  - query that returns meaningful ROW_COUNT() -
114
          a number of modified rows
115
*/
590.2.18 by Monty Taylor
Changed the bitset<32> to a bitset<5>. Made the int constants into bitset constants.
116
bitset<CF_BIT_SIZE> sql_command_flags[SQLCOM_END+1];
1 by brian
clean slate
117
2119.4.1 by Monty Taylor
Turns on -fvisibility=hidden by default. Symbols intended to be used by
118
const std::string &getCommandName(const enum_server_command& command)
119
{
120
  return command_name[command];
121
}
122
1 by brian
clean slate
123
void init_update_queries(void)
124
{
610 by Brian Aker
Merge of Monty's (plus fix for increment style/useless +1)
125
  uint32_t x;
126
127
  for (x= 0; x <= SQLCOM_END; x++)
128
    sql_command_flags[x].reset();
1 by brian
clean slate
129
130
  sql_command_flags[SQLCOM_CREATE_TABLE]=   CF_CHANGES_DATA;
131
  sql_command_flags[SQLCOM_CREATE_INDEX]=   CF_CHANGES_DATA;
132
  sql_command_flags[SQLCOM_ALTER_TABLE]=    CF_CHANGES_DATA | CF_WRITE_LOGS_COMMAND;
133
  sql_command_flags[SQLCOM_TRUNCATE]=       CF_CHANGES_DATA | CF_WRITE_LOGS_COMMAND;
134
  sql_command_flags[SQLCOM_DROP_TABLE]=     CF_CHANGES_DATA;
135
  sql_command_flags[SQLCOM_LOAD]=           CF_CHANGES_DATA;
136
  sql_command_flags[SQLCOM_CREATE_DB]=      CF_CHANGES_DATA;
137
  sql_command_flags[SQLCOM_DROP_DB]=        CF_CHANGES_DATA;
138
  sql_command_flags[SQLCOM_RENAME_TABLE]=   CF_CHANGES_DATA;
139
  sql_command_flags[SQLCOM_DROP_INDEX]=     CF_CHANGES_DATA;
140
141
  sql_command_flags[SQLCOM_UPDATE]=	    CF_CHANGES_DATA | CF_HAS_ROW_COUNT;
142
  sql_command_flags[SQLCOM_INSERT]=	    CF_CHANGES_DATA | CF_HAS_ROW_COUNT;
143
  sql_command_flags[SQLCOM_INSERT_SELECT]=  CF_CHANGES_DATA | CF_HAS_ROW_COUNT;
144
  sql_command_flags[SQLCOM_DELETE]=         CF_CHANGES_DATA | CF_HAS_ROW_COUNT;
145
  sql_command_flags[SQLCOM_REPLACE]=        CF_CHANGES_DATA | CF_HAS_ROW_COUNT;
146
  sql_command_flags[SQLCOM_REPLACE_SELECT]= CF_CHANGES_DATA | CF_HAS_ROW_COUNT;
147
148
  sql_command_flags[SQLCOM_SHOW_WARNS]= CF_STATUS_COMMAND;
149
  sql_command_flags[SQLCOM_SHOW_ERRORS]= CF_STATUS_COMMAND;
150
  sql_command_flags[SQLCOM_SHOW_CREATE_DB]=  CF_STATUS_COMMAND;
151
  sql_command_flags[SQLCOM_SHOW_CREATE]=  CF_STATUS_COMMAND;
152
153
  /*
154
    The following admin table operations are allowed
155
    on log tables.
156
  */
157
  sql_command_flags[SQLCOM_ANALYZE]=          CF_WRITE_LOGS_COMMAND;
158
}
159
160
/**
161
  Perform one connection-level (COM_XXXX) command.
162
163
  @param command         type of command to perform
520.1.22 by Brian Aker
Second pass of thd cleanup
164
  @param session             connection handle
1 by brian
clean slate
165
  @param packet          data for the command, packet is always null-terminated
166
  @param packet_length   length of packet + 1 (to show that data is
167
                         null-terminated) except for COM_SLEEP, where it
168
                         can be zero.
169
170
  @todo
520.1.22 by Brian Aker
Second pass of thd cleanup
171
    set session->lex->sql_command to SQLCOM_END here.
1 by brian
clean slate
172
  @todo
173
    The following has to be changed to an 8 byte integer
174
175
  @retval
176
    0   ok
177
  @retval
178
    1   request of thread shutdown, i. e. if command is
179
        COM_QUIT/COM_SHUTDOWN
180
*/
520.1.22 by Brian Aker
Second pass of thd cleanup
181
bool dispatch_command(enum enum_server_command command, Session *session,
561.1.3 by Monty Taylor
Split some more things out of common_includes.h.
182
                      char* packet, uint32_t packet_length)
1 by brian
clean slate
183
{
184
  bool error= 0;
561.1.3 by Monty Taylor
Split some more things out of common_includes.h.
185
  Query_id &query_id= Query_id::get_query_id();
1 by brian
clean slate
186
1932.2.3 by Brian Aker
Updates for D-trace
187
  DRIZZLE_COMMAND_START(session->thread_id, command);
1126.10.2 by Padraig O'Sullivan
Added hooks into the command start and query start dtrace probes.
188
189
  session->command= command;
520.1.22 by Brian Aker
Second pass of thd cleanup
190
  session->lex->sql_command= SQLCOM_END; /* to avoid confusing VIEW detectors */
191
  session->set_time();
1273.1.1 by Jay Pipes
* Changes Session::warn_id to Session::warn_query_id
192
  session->setQueryId(query_id.value());
1 by brian
clean slate
193
194
  switch( command ) {
195
  /* Ignore these statements. */
196
  case COM_PING:
197
    break;
198
  /* Increase id and count all other statements. */
199
  default:
1689.5.1 by Joseph Daly
remove increment calls
200
    session->status_var.questions++;
561.1.3 by Monty Taylor
Split some more things out of common_includes.h.
201
    query_id.next();
1 by brian
clean slate
202
  }
203
2073.1.3 by Brian Aker
Fix for test on drop (error message change).
204
  /* @todo set session->lex->sql_command to SQLCOM_END here */
1 by brian
clean slate
205
1130.1.16 by Monty Taylor
Fixed naming issue.
206
  plugin::Logging::preDo(session);
1836 by Brian Aker
Added support for pre/post triggers (this removes the need for the current
207
  if (unlikely(plugin::EventObserver::beforeStatement(*session)))
208
  {
209
    // We should do something about an error...
210
  }
383.6.4 by Mark Atwood
more make plug logging work
211
520.1.22 by Brian Aker
Second pass of thd cleanup
212
  session->server_status&=
1 by brian
clean slate
213
           ~(SERVER_QUERY_NO_INDEX_USED | SERVER_QUERY_NO_GOOD_INDEX_USED);
214
  switch (command) {
215
  case COM_INIT_DB:
216
  {
1302.4.8 by Eric Day
Added prototest test case for mysql_protocol.
217
    if (packet_length == 0)
218
    {
219
      my_message(ER_NO_DB_ERROR, ER(ER_NO_DB_ERROR), MYF(0));
220
      break;
221
    }
222
1273.19.29 by Brian Aker
Code style cleanup.
223
    string tmp(packet, packet_length);
224
2087.4.1 by Brian Aker
Merge in schema identifier.
225
    identifier::Schema identifier(tmp);
1415 by Brian Aker
Mass overhaul to use schema_identifier.
226
2159.2.6 by Brian Aker
Finalize interface for schema.
227
    if (not schema::change(*session, identifier))
1 by brian
clean slate
228
    {
836 by Brian Aker
Fixed session call from function to method.
229
      session->my_ok();
1 by brian
clean slate
230
    }
231
    break;
232
  }
233
  case COM_QUERY:
234
  {
1921.4.2 by Brian Aker
Adding in concurrent execute support.
235
    if (not session->readAndStoreQuery(packet, packet_length))
1 by brian
clean slate
236
      break;					// fatal error is set
1932.2.3 by Brian Aker
Updates for D-trace
237
    DRIZZLE_QUERY_START(session->getQueryString()->c_str(),
1126.10.2 by Padraig O'Sullivan
Added hooks into the command start and query start dtrace probes.
238
                        session->thread_id,
1976.5.4 by Brian Aker
Update schema, make sure that it always ruturns a valid string (it just
239
                        const_cast<const char *>(session->schema()->c_str()));
1 by brian
clean slate
240
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
241
    parse(session, session->getQueryString()->c_str(), session->getQueryString()->length());
1 by brian
clean slate
242
243
    break;
244
  }
245
  case COM_QUIT:
246
    /* We don't calculate statistics for this command */
520.1.22 by Brian Aker
Second pass of thd cleanup
247
    session->main_da.disable_status();              // Don't send anything back
55 by brian
Update for using real bool types.
248
    error=true;					// End server
1 by brian
clean slate
249
    break;
250
  case COM_SHUTDOWN:
251
  {
1689.5.1 by Joseph Daly
remove increment calls
252
    session->status_var.com_other++;
836 by Brian Aker
Fixed session call from function to method.
253
    session->my_eof();
1039.1.16 by Brian Aker
A lot of little cleanups (most based off lcov)
254
    session->close_thread_tables();			// Free before kill
575.4.4 by Yoshinori Sano
Rename mysql to drizzle.
255
    kill_drizzle();
55 by brian
Update for using real bool types.
256
    error=true;
1 by brian
clean slate
257
    break;
258
  }
259
  case COM_PING:
1689.5.1 by Joseph Daly
remove increment calls
260
    session->status_var.com_other++;
836 by Brian Aker
Fixed session call from function to method.
261
    session->my_ok();				// Tell client we are alive
1 by brian
clean slate
262
    break;
263
  case COM_SLEEP:
264
  case COM_CONNECT:				// Impossible here
265
  case COM_END:
266
  default:
267
    my_message(ER_UNKNOWN_COM_ERROR, ER(ER_UNKNOWN_COM_ERROR), MYF(0));
268
    break;
269
  }
270
271
  /* If commit fails, we should be able to reset the OK status. */
520.1.22 by Brian Aker
Second pass of thd cleanup
272
  session->main_da.can_overwrite_status= true;
1273.1.2 by Jay Pipes
This patch does not change any algorithms or code paths,
273
  TransactionServices &transaction_services= TransactionServices::singleton();
2096.2.1 by David Shrewsbury
Initial change to use references to Session in TransactionServices methods rather than pointers.
274
  transaction_services.autocommitOrRollback(*session, session->is_error());
520.1.22 by Brian Aker
Second pass of thd cleanup
275
  session->main_da.can_overwrite_status= false;
1 by brian
clean slate
276
520.1.22 by Brian Aker
Second pass of thd cleanup
277
  session->transaction.stmt.reset();
1 by brian
clean slate
278
279
280
  /* report error issued during command execution */
520.1.22 by Brian Aker
Second pass of thd cleanup
281
  if (session->killed_errno())
282
  {
283
    if (! session->main_da.is_set())
284
      session->send_kill_message();
285
  }
1910.2.8 by Brian Aker
Enapsulate Kill.
286
  if (session->getKilled() == Session::KILL_QUERY || session->getKilled() == Session::KILL_BAD_DATA)
520.1.22 by Brian Aker
Second pass of thd cleanup
287
  {
1910.2.8 by Brian Aker
Enapsulate Kill.
288
    session->setKilled(Session::NOT_KILLED);
1689.2.26 by Brian Aker
More encapsulation of the thread var.
289
    session->setAbort(false);
520.1.22 by Brian Aker
Second pass of thd cleanup
290
  }
291
971.3.12 by Eric Day
Started abstracting Protocol, removed init_connect, init_file.
292
  /* Can not be true, but do not take chances in production. */
293
  assert(! session->main_da.is_sent);
294
295
  switch (session->main_da.status())
296
  {
297
  case Diagnostics_area::DA_ERROR:
298
    /* The query failed, send error to log and abort bootstrap. */
2015.3.1 by Brian Aker
Encapsulate client call. Also remove the need to call current_session when
299
    session->getClient()->sendError(session->main_da.sql_errno(),
971.6.1 by Eric Day
Renamed Protocol to Client, cleaned up some unnecessary methods along the way.
300
                               session->main_da.message());
971.3.12 by Eric Day
Started abstracting Protocol, removed init_connect, init_file.
301
    break;
302
303
  case Diagnostics_area::DA_EOF:
2015.3.1 by Brian Aker
Encapsulate client call. Also remove the need to call current_session when
304
    session->getClient()->sendEOF();
971.3.12 by Eric Day
Started abstracting Protocol, removed init_connect, init_file.
305
    break;
306
307
  case Diagnostics_area::DA_OK:
2015.3.1 by Brian Aker
Encapsulate client call. Also remove the need to call current_session when
308
    session->getClient()->sendOK();
971.3.12 by Eric Day
Started abstracting Protocol, removed init_connect, init_file.
309
    break;
310
311
  case Diagnostics_area::DA_DISABLED:
312
    break;
313
314
  case Diagnostics_area::DA_EMPTY:
315
  default:
2015.3.1 by Brian Aker
Encapsulate client call. Also remove the need to call current_session when
316
    session->getClient()->sendOK();
971.3.12 by Eric Day
Started abstracting Protocol, removed init_connect, init_file.
317
    break;
318
  }
319
320
  session->main_da.is_sent= true;
520.1.22 by Brian Aker
Second pass of thd cleanup
321
322
  session->set_proc_info("closing tables");
1 by brian
clean slate
323
  /* Free tables */
1039.1.16 by Brian Aker
A lot of little cleanups (most based off lcov)
324
  session->close_thread_tables();
520.1.22 by Brian Aker
Second pass of thd cleanup
325
1130.1.16 by Monty Taylor
Fixed naming issue.
326
  plugin::Logging::postDo(session);
1836 by Brian Aker
Added support for pre/post triggers (this removes the need for the current
327
  if (unlikely(plugin::EventObserver::afterStatement(*session)))
328
  {
329
    // We should do something about an error...
330
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
331
961.1.4 by Brian Aker
Remove another lock for processlist.
332
  /* Store temp state for processlist */
520.1.22 by Brian Aker
Second pass of thd cleanup
333
  session->set_proc_info("cleaning up");
1126.10.2 by Padraig O'Sullivan
Added hooks into the command start and query start dtrace probes.
334
  session->command= COM_SLEEP;
1921.4.13 by Brian Aker
Fix issue where session info might not be correct.
335
  session->resetQueryString();
961.1.4 by Brian Aker
Remove another lock for processlist.
336
337
  session->set_proc_info(NULL);
1487 by Brian Aker
More updates for memory::Root
338
  session->mem_root->free_root(MYF(memory::KEEP_PREALLOC));
1126.10.2 by Padraig O'Sullivan
Added hooks into the command start and query start dtrace probes.
339
340
  if (DRIZZLE_QUERY_DONE_ENABLED() || DRIZZLE_COMMAND_DONE_ENABLED())
341
  {
342
    if (command == COM_QUERY)
343
    {
1126.10.21 by Padraig O'Sullivan
Whoops, simple fix for a build warning that happens if the build is not
344
      DRIZZLE_QUERY_DONE(session->is_error());
1126.10.2 by Padraig O'Sullivan
Added hooks into the command start and query start dtrace probes.
345
    }
1126.10.21 by Padraig O'Sullivan
Whoops, simple fix for a build warning that happens if the build is not
346
    DRIZZLE_COMMAND_DONE(session->is_error());
1126.10.2 by Padraig O'Sullivan
Added hooks into the command start and query start dtrace probes.
347
  }
348
349
  return error;
1 by brian
clean slate
350
}
351
352
353
/**
327.2.4 by Brian Aker
Refactoring table.h
354
  Create a TableList object for an INFORMATION_SCHEMA table.
1 by brian
clean slate
355
356
    This function is used in the parser to convert a SHOW or DESCRIBE
357
    table_name command to a SELECT from INFORMATION_SCHEMA.
846 by Brian Aker
Removing on typedeffed class.
358
    It prepares a Select_Lex and a TableList object to represent the
1 by brian
clean slate
359
    given command as a SELECT parse tree.
360
1079.2.9 by Padraig O'Sullivan
Removed the dependency on knowing the position of an I_S table in the
361
  @param session           thread handle
362
  @param lex               current lex
363
  @param table_ident       table alias if it's used
364
  @param schema_table_name the name of the INFORMATION_SCHEMA table to be
365
                           created
1 by brian
clean slate
366
367
  @note
368
    Due to the way this function works with memory and LEX it cannot
369
    be used outside the parser (parse tree transformations outside
370
    the parser break PS and SP).
371
372
  @retval
373
    0                 success
374
  @retval
375
    1                 out of memory or SHOW commands are not allowed
376
                      in this version of the server.
377
*/
1273.13.38 by Brian Aker
Add in new show work.
378
static bool _schema_select(Session *session, Select_Lex *sel,
379
                           const string& schema_table_name)
380
{
381
  LEX_STRING db, table;
1858.1.2 by Padraig O'Sullivan
Converted another uint8_t type to be a bitset.
382
  bitset<NUM_OF_TABLE_OPTIONS> table_options;
1273.13.38 by Brian Aker
Add in new show work.
383
  /*
384
     We have to make non const db_name & table_name
385
     because of lower_case_table_names
386
  */
387
  session->make_lex_string(&db, "data_dictionary", sizeof("data_dictionary"), false);
388
  session->make_lex_string(&table, schema_table_name, false);
389
390
  if (! sel->add_table_to_list(session, new Table_ident(db, table),
1858.1.2 by Padraig O'Sullivan
Converted another uint8_t type to be a bitset.
391
                               NULL, table_options, TL_READ))
1273.13.38 by Brian Aker
Add in new show work.
392
  {
393
    return true;
394
  }
395
  return false;
396
}
397
398
int prepare_new_schema_table(Session *session, LEX *lex,
399
                             const string& schema_table_name)
400
{
401
  Select_Lex *schema_select_lex= NULL;
402
403
  Select_Lex *select_lex= lex->current_select;
404
  assert(select_lex);
405
  if (_schema_select(session, select_lex, schema_table_name))
406
  {
407
    return(1);
408
  }
409
  TableList *table_list= (TableList*) select_lex->table_list.first;
410
  assert(table_list);
411
  table_list->schema_select_lex= schema_select_lex;
412
413
  return 0;
414
}
1 by brian
clean slate
415
416
/**
520.1.22 by Brian Aker
Second pass of thd cleanup
417
  Execute command saved in session and lex->sql_command.
1 by brian
clean slate
418
419
    Before every operation that can request a write lock for a table
420
    wait if a global read lock exists. However do not wait if this
421
    thread has locked tables already. No new locks can be requested
422
    until the other locks are released. The thread that requests the
423
    global read lock waits for write locked tables to become unlocked.
424
425
    Note that wait_if_global_read_lock() sets a protection against a new
426
    global read lock when it succeeds. This needs to be released by
427
    start_waiting_global_read_lock() after the operation.
428
520.1.22 by Brian Aker
Second pass of thd cleanup
429
  @param session                       Thread handle
1 by brian
clean slate
430
431
  @todo
432
    - Invalidate the table in the query cache if something changed
433
    after unlocking when changes become visible.
434
    TODO: this is workaround. right way will be move invalidating in
435
    the unlock procedure.
436
    - TODO: use check_change_password()
437
    - JOIN is not supported yet. TODO
438
    - SUSPEND and FOR MIGRATE are not supported yet. TODO
439
440
  @retval
55 by brian
Update for using real bool types.
441
    false       OK
1 by brian
clean slate
442
  @retval
55 by brian
Update for using real bool types.
443
    true        Error
1 by brian
clean slate
444
*/
445
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
446
static int execute_command(Session *session)
1 by brian
clean slate
447
{
1100.3.68 by Padraig O'Sullivan
Changed the type of res in mysql_execute_command() to bool instead of int
448
  bool res= false;
520.1.22 by Brian Aker
Second pass of thd cleanup
449
  LEX  *lex= session->lex;
846 by Brian Aker
Removing on typedeffed class.
450
  /* first Select_Lex (have special meaning for many of non-SELECTcommands) */
451
  Select_Lex *select_lex= &lex->select_lex;
1 by brian
clean slate
452
  /* list of all tables in query */
327.2.4 by Brian Aker
Refactoring table.h
453
  TableList *all_tables;
1 by brian
clean slate
454
455
  /*
846 by Brian Aker
Removing on typedeffed class.
456
    In many cases first table of main Select_Lex have special meaning =>
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
457
    check that it is first table in global list and relink it first in
1 by brian
clean slate
458
    queries_tables list if it is necessary (we need such relinking only
459
    for queries with subqueries in select list, in this case tables of
460
    subqueries will go to global list first)
461
846 by Brian Aker
Removing on typedeffed class.
462
    all_tables will differ from first_table only if most upper Select_Lex
1 by brian
clean slate
463
    do not contain tables.
464
465
    Because of above in place where should be at least one table in most
846 by Brian Aker
Removing on typedeffed class.
466
    outer Select_Lex we have following check:
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
467
    assert(first_table == all_tables);
468
    assert(first_table == all_tables && first_table != 0);
1 by brian
clean slate
469
  */
470
  lex->first_lists_tables_same();
471
  /* should be assigned after making first tables same */
472
  all_tables= lex->query_tables;
473
  /* set context for commands which do not use setup_tables */
474
  select_lex->
327.2.4 by Brian Aker
Refactoring table.h
475
    context.resolve_in_table_list_only((TableList*)select_lex->
1 by brian
clean slate
476
                                       table_list.first);
477
478
  /*
479
    Reset warning count for each query that uses tables
480
    A better approach would be to reset this for any commands
481
    that is not a SHOW command or a select that only access local
482
    variables, but for now this is probably good enough.
483
    Don't reset warnings when executing a stored routine.
484
  */
1100.3.63 by Padraig O'Sullivan
Extracted the ALTER TABLE command into its own class and implementation
485
  if (all_tables || ! lex->is_single_level_stmt())
1100.3.66 by Padraig O'Sullivan
Extracted the last commands....Finally removed that gigantic switch
486
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
487
    drizzle_reset_errors(session, 0);
1100.3.66 by Padraig O'Sullivan
Extracted the last commands....Finally removed that gigantic switch
488
  }
1 by brian
clean slate
489
1273.1.13 by Jay Pipes
Style cleanup around TransactionContext::modified_non_trans_table and dead code removal
490
  assert(session->transaction.stmt.hasModifiedNonTransData() == false);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
491
2140.2.6 by Stewart Smith
be sure to start a transaction with a startTransaction call on the first statement when autocommit is OFF. The only statements that DO NOT do this are a) DDL and b) SELECT without a table (e.g. SELECT DATABASE() and SHOW STATUS.
492
  if (! (session->server_status & SERVER_STATUS_AUTOCOMMIT)
493
      && ! session->inTransaction()
494
      && lex->statement->isTransactional())
495
  {
496
    if (session->startTransaction() == false)
497
    {
498
      my_error(drizzled::ER_UNKNOWN_ERROR, MYF(0));
499
      return true;
500
    }
501
  }
502
1100.3.66 by Padraig O'Sullivan
Extracted the last commands....Finally removed that gigantic switch
503
  /* now we are ready to execute the statement */
504
  res= lex->statement->execute();
520.1.22 by Brian Aker
Second pass of thd cleanup
505
  session->set_proc_info("query end");
1 by brian
clean slate
506
  /*
507
    The return value for ROW_COUNT() is "implementation dependent" if the
508
    statement is not DELETE, INSERT or UPDATE, but -1 is what JDBC and ODBC
509
    wants. We also keep the last value in case of SQLCOM_CALL or
510
    SQLCOM_EXECUTE.
511
  */
1100.3.49 by Padraig O'Sullivan
Extracted the KILL command into its own class and implementation files.
512
  if (! (sql_command_flags[lex->sql_command].test(CF_BIT_HAS_ROW_COUNT)))
513
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
514
    session->row_count_func= -1;
1100.3.49 by Padraig O'Sullivan
Extracted the KILL command into its own class and implementation files.
515
  }
1 by brian
clean slate
516
1100.3.63 by Padraig O'Sullivan
Extracted the ALTER TABLE command into its own class and implementation
517
  return (res || session->is_error());
1 by brian
clean slate
518
}
520.1.22 by Brian Aker
Second pass of thd cleanup
519
bool execute_sqlcom_select(Session *session, TableList *all_tables)
1 by brian
clean slate
520
{
520.1.22 by Brian Aker
Second pass of thd cleanup
521
  LEX	*lex= session->lex;
1 by brian
clean slate
522
  select_result *result=lex->result;
873.1.9 by Jay Pipes
This patch fixes the following functions to properly error out
523
  bool res= false;
1 by brian
clean slate
524
  /* assign global limit variable if limit is not given */
525
  {
846 by Brian Aker
Removing on typedeffed class.
526
    Select_Lex *param= lex->unit.global_parameters;
1 by brian
clean slate
527
    if (!param->explicit_limit)
528
      param->select_limit=
520.1.22 by Brian Aker
Second pass of thd cleanup
529
        new Item_int((uint64_t) session->variables.select_limit);
1 by brian
clean slate
530
  }
2140.2.6 by Stewart Smith
be sure to start a transaction with a startTransaction call on the first statement when autocommit is OFF. The only statements that DO NOT do this are a) DDL and b) SELECT without a table (e.g. SELECT DATABASE() and SHOW STATUS.
531
532
  if (all_tables
533
      && ! (session->server_status & SERVER_STATUS_AUTOCOMMIT)
534
      && ! session->inTransaction()
535
      && ! lex->statement->isShow())
536
  {
537
    if (session->startTransaction() == false)
538
    {
539
      my_error(drizzled::ER_UNKNOWN_ERROR, MYF(0));
540
      return true;
541
    }
542
  }
543
1415 by Brian Aker
Mass overhaul to use schema_identifier.
544
  if (not (res= session->openTablesLock(all_tables)))
1 by brian
clean slate
545
  {
546
    if (lex->describe)
547
    {
548
      /*
549
        We always use select_send for EXPLAIN, even if it's an EXPLAIN
550
        for SELECT ... INTO OUTFILE: a user application should be able
551
        to prepend EXPLAIN to any query and receive output for it,
552
        even if the query itself redirects the output.
553
      */
554
      if (!(result= new select_send()))
971.6.11 by Eric Day
Removed purecov messages.
555
        return true;
520.1.22 by Brian Aker
Second pass of thd cleanup
556
      session->send_explain_fields(result);
1240.7.1 by Padraig O'Sullivan
Created an ExplainPlan class in the optimizer namespace. All printing of an explain in drizzle goes
557
      optimizer::ExplainPlan planner;
558
      res= planner.explainUnion(session, &session->lex->unit, result);
1 by brian
clean slate
559
      if (lex->describe & DESCRIBE_EXTENDED)
560
      {
561
        char buff[1024];
205 by Brian Aker
uint32 -> uin32_t
562
        String str(buff,(uint32_t) sizeof(buff), system_charset_info);
1 by brian
clean slate
563
        str.length(0);
520.1.22 by Brian Aker
Second pass of thd cleanup
564
        session->lex->unit.print(&str, QT_ORDINARY);
1 by brian
clean slate
565
        str.append('\0');
520.1.22 by Brian Aker
Second pass of thd cleanup
566
        push_warning(session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
1 by brian
clean slate
567
                     ER_YES, str.ptr());
568
      }
569
      if (res)
570
        result->abort();
571
      else
572
        result->send_eof();
573
      delete result;
574
    }
575
    else
576
    {
577
      if (!result && !(result= new select_send()))
971.6.11 by Eric Day
Removed purecov messages.
578
        return true;
1643.6.1 by Djellel E. Difallah
Added hook points and the interface for the Query Cache plugin
579
580
      /* Init the Query Cache plugin */
1643.6.3 by Djellel E. Difallah
Refactoring of the QC Plugin's interface methods, adding mutual exclusion mechanism between sessions to cache a query, Store Meta inoformation of all the tables and select fields of the query
581
      plugin::QueryCache::prepareResultset(session); 
520.1.22 by Brian Aker
Second pass of thd cleanup
582
      res= handle_select(session, lex, result, 0);
1643.6.1 by Djellel E. Difallah
Added hook points and the interface for the Query Cache plugin
583
      /* Send the Resultset to the cache */
1643.6.3 by Djellel E. Difallah
Refactoring of the QC Plugin's interface methods, adding mutual exclusion mechanism between sessions to cache a query, Store Meta inoformation of all the tables and select fields of the query
584
      plugin::QueryCache::setResultset(session); 
1643.6.1 by Djellel E. Difallah
Added hook points and the interface for the Query Cache plugin
585
1 by brian
clean slate
586
      if (result != lex->result)
1643.6.3 by Djellel E. Difallah
Refactoring of the QC Plugin's interface methods, adding mutual exclusion mechanism between sessions to cache a query, Store Meta inoformation of all the tables and select fields of the query
587
        delete result;
1 by brian
clean slate
588
    }
589
  }
590
  return res;
591
}
592
593
594
#define MY_YACC_INIT 1000			// Start with big alloc
595
#define MY_YACC_MAX  32000			// Because of 'short'
596
597
bool my_yyoverflow(short **yyss, YYSTYPE **yyvs, ulong *yystacksize)
598
{
520.1.22 by Brian Aker
Second pass of thd cleanup
599
  LEX	*lex= current_session->lex;
1 by brian
clean slate
600
  ulong old_info=0;
438.1.13 by Brian Aker
uint cleanup.
601
  if ((uint32_t) *yystacksize >= MY_YACC_MAX)
1 by brian
clean slate
602
    return 1;
603
  if (!lex->yacc_yyvs)
604
    old_info= *yystacksize;
605
  *yystacksize= set_zone((*yystacksize)*2,MY_YACC_INIT,MY_YACC_MAX);
656.1.46 by Monty Taylor
More malloc return cleanups.
606
  unsigned char *tmpptr= NULL;
607
  if (!(tmpptr= (unsigned char *)realloc(lex->yacc_yyvs,
608
                                         *yystacksize* sizeof(**yyvs))))
609
      return 1;
610
  lex->yacc_yyvs= tmpptr;
611
  tmpptr= NULL;
612
  if (!(tmpptr= (unsigned char*)realloc(lex->yacc_yyss,
613
                                        *yystacksize* sizeof(**yyss))))
614
      return 1;
615
  lex->yacc_yyss= tmpptr;
1 by brian
clean slate
616
  if (old_info)
617
  {						// Copy old info from stack
212.6.6 by Mats Kindahl
Removing redundant use of casts in drizzled/ for memcmp(), memcpy(), memset(), and memmove().
618
    memcpy(lex->yacc_yyss, *yyss, old_info*sizeof(**yyss));
619
    memcpy(lex->yacc_yyvs, *yyvs, old_info*sizeof(**yyvs));
1 by brian
clean slate
620
  }
621
  *yyss=(short*) lex->yacc_yyss;
622
  *yyvs=(YYSTYPE*) lex->yacc_yyvs;
623
  return 0;
624
}
625
626
627
void
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
628
init_select(LEX *lex)
1 by brian
clean slate
629
{
846 by Brian Aker
Removing on typedeffed class.
630
  Select_Lex *select_lex= lex->current_select;
1 by brian
clean slate
631
  select_lex->init_select();
632
  lex->wild= 0;
633
  if (select_lex == &lex->select_lex)
634
  {
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
635
    assert(lex->result == 0);
1 by brian
clean slate
636
    lex->exchange= 0;
637
  }
638
}
639
640
641
bool
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
642
new_select(LEX *lex, bool move_down)
1 by brian
clean slate
643
{
846 by Brian Aker
Removing on typedeffed class.
644
  Select_Lex *select_lex;
520.1.22 by Brian Aker
Second pass of thd cleanup
645
  Session *session= lex->session;
1 by brian
clean slate
646
846 by Brian Aker
Removing on typedeffed class.
647
  if (!(select_lex= new (session->mem_root) Select_Lex()))
2104.3.7 by Brian Aker
Minor cleanup, drop one of two needs for current session during parsing.
648
    return true;
649
520.1.22 by Brian Aker
Second pass of thd cleanup
650
  select_lex->select_number= ++session->select_number;
1 by brian
clean slate
651
  select_lex->parent_lex= lex; /* Used in init_query. */
652
  select_lex->init_query();
653
  select_lex->init_select();
654
  lex->nest_level++;
2104.3.7 by Brian Aker
Minor cleanup, drop one of two needs for current session during parsing.
655
1 by brian
clean slate
656
  if (lex->nest_level > (int) MAX_SELECT_NESTING)
657
  {
658
    my_error(ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT,MYF(0),MAX_SELECT_NESTING);
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
659
    return(1);
1 by brian
clean slate
660
  }
2104.3.7 by Brian Aker
Minor cleanup, drop one of two needs for current session during parsing.
661
1 by brian
clean slate
662
  select_lex->nest_level= lex->nest_level;
663
  if (move_down)
664
  {
848 by Brian Aker
typdef class removal (just... use the name of the class).
665
    Select_Lex_Unit *unit;
1 by brian
clean slate
666
    /* first select_lex of subselect or derived table */
848 by Brian Aker
typdef class removal (just... use the name of the class).
667
    if (!(unit= new (session->mem_root) Select_Lex_Unit()))
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
668
      return(1);
1 by brian
clean slate
669
670
    unit->init_query();
671
    unit->init_select();
520.1.22 by Brian Aker
Second pass of thd cleanup
672
    unit->session= session;
1 by brian
clean slate
673
    unit->include_down(lex->current_select);
674
    unit->link_next= 0;
675
    unit->link_prev= 0;
676
    unit->return_to= lex->current_select;
677
    select_lex->include_down(unit);
678
    /*
679
      By default we assume that it is usual subselect and we have outer name
680
      resolution context, if no we will assign it to 0 later
681
    */
682
    select_lex->context.outer_context= &select_lex->outer_select()->context;
683
  }
684
  else
685
  {
686
    if (lex->current_select->order_list.first && !lex->current_select->braces)
687
    {
327.2.3 by Brian Aker
Refactoring of class Table
688
      my_error(ER_WRONG_USAGE, MYF(0), "UNION", "order_st BY");
2104.3.7 by Brian Aker
Minor cleanup, drop one of two needs for current session during parsing.
689
      return true;
1 by brian
clean slate
690
    }
2104.3.7 by Brian Aker
Minor cleanup, drop one of two needs for current session during parsing.
691
1 by brian
clean slate
692
    select_lex->include_neighbour(lex->current_select);
848 by Brian Aker
typdef class removal (just... use the name of the class).
693
    Select_Lex_Unit *unit= select_lex->master_unit();
2104.3.7 by Brian Aker
Minor cleanup, drop one of two needs for current session during parsing.
694
695
    if (not unit->fake_select_lex && unit->add_fake_select_lex(lex->session))
696
      return true;
697
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
698
    select_lex->context.outer_context=
1 by brian
clean slate
699
                unit->first_select()->context.outer_context;
700
  }
701
702
  select_lex->master_unit()->global_parameters= select_lex;
847 by Brian Aker
More typdef class removal.
703
  select_lex->include_global((Select_Lex_Node**)&lex->all_selects_list);
1 by brian
clean slate
704
  lex->current_select= select_lex;
705
  /*
706
    in subquery is SELECT query and we allow resolution of names in SELECT
707
    list
708
  */
55 by brian
Update for using real bool types.
709
  select_lex->context.resolve_in_select_list= true;
2104.3.7 by Brian Aker
Minor cleanup, drop one of two needs for current session during parsing.
710
711
  return false;
1 by brian
clean slate
712
}
713
714
/**
715
  Create a select to return the same output as 'SELECT @@var_name'.
716
717
  Used for SHOW COUNT(*) [ WARNINGS | ERROR].
718
719
  This will crash with a core dump if the variable doesn't exists.
720
721
  @param var_name		Variable name
722
*/
723
2137.1.12 by Brian Aker
Remove current_session in building the error count.
724
void create_select_for_variable(Session *session, const char *var_name)
1 by brian
clean slate
725
{
726
  LEX *lex;
727
  LEX_STRING tmp, null_lex_string;
728
  Item *var;
673.2.1 by Toru Maesaka
First pass of replacing MySQL's strxmov with libc alternatives
729
  char buff[MAX_SYS_VAR_LENGTH*2+4+8];
730
  char *end= buff;
1 by brian
clean slate
731
520.1.22 by Brian Aker
Second pass of thd cleanup
732
  lex= session->lex;
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
733
  init_select(lex);
1 by brian
clean slate
734
  lex->sql_command= SQLCOM_SELECT;
735
  tmp.str= (char*) var_name;
736
  tmp.length=strlen(var_name);
212.6.6 by Mats Kindahl
Removing redundant use of casts in drizzled/ for memcmp(), memcpy(), memset(), and memmove().
737
  memset(&null_lex_string.str, 0, sizeof(null_lex_string));
1 by brian
clean slate
738
  /*
739
    We set the name of Item to @@session.var_name because that then is used
740
    as the column name in the output.
741
  */
520.1.22 by Brian Aker
Second pass of thd cleanup
742
  if ((var= get_system_var(session, OPT_SESSION, tmp, null_lex_string)))
1 by brian
clean slate
743
  {
1366.1.10 by Siddharth Prakash Singh
sprintf->snprintf in drizzled/sql_parse.cc
744
    end+= snprintf(buff, sizeof(buff), "@@session.%s", var_name);
1 by brian
clean slate
745
    var->set_name(buff, end-buff, system_charset_info);
838 by Brian Aker
More class adoption/method
746
    session->add_item_to_list(var);
1 by brian
clean slate
747
  }
748
}
749
750
751
/**
752
  Parse a query.
753
520.1.22 by Brian Aker
Second pass of thd cleanup
754
  @param       session     Current thread
1 by brian
clean slate
755
  @param       inBuf   Begining of the query text
756
  @param       length  Length of the query text
757
*/
758
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
759
void parse(Session *session, const char *inBuf, uint32_t length)
1 by brian
clean slate
760
{
1897.1.7 by Brian Aker
Partial encapsulation of lex_start.
761
  session->lex->start(session);
1878.10.4 by billy.earney at gmail
resolved conflict in sql_parse.cc
762
735 by Brian Aker
Refactor session.
763
  session->reset_for_next_command();
1643.6.3 by Djellel E. Difallah
Refactoring of the QC Plugin's interface methods, adding mutual exclusion mechanism between sessions to cache a query, Store Meta inoformation of all the tables and select fields of the query
764
  /* Check if the Query is Cached if and return true if yes
765
   * TODO the plugin has to make sure that the query is cacheble
766
   * by setting the query_safe_cache param to TRUE
767
   */
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
768
  bool res= true;
769
  if (plugin::QueryCache::isCached(session))
1280.3.8 by Padraig O'Sullivan
Removed an obsolete comment related to the query cache that was confusing.
770
  {
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
771
    res= plugin::QueryCache::sendCachedResultset(session);
772
  }
773
  if (not res)
1643.6.13 by Djellel E. Difallah
adding tests
774
  {
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
775
    return;
1643.6.13 by Djellel E. Difallah
adding tests
776
  }
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
777
  LEX *lex= session->lex;
778
  Lex_input_stream lip(session, inBuf, length);
779
  bool err= parse_sql(session, &lip);
780
  if (!err)
781
  {
782
    {
1932.2.3 by Brian Aker
Updates for D-trace
783
      if (not session->is_error())
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
784
      {
1932.2.3 by Brian Aker
Updates for D-trace
785
        DRIZZLE_QUERY_EXEC_START(session->getQueryString()->c_str(),
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
786
                                 session->thread_id,
1976.5.4 by Brian Aker
Update schema, make sure that it always ruturns a valid string (it just
787
                                 const_cast<const char *>(session->schema()->c_str()));
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
788
        // Implement Views here --Brian
789
        /* Actually execute the query */
790
        try 
791
        {
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
792
          execute_command(session);
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
793
        }
794
        catch (...)
795
        {
796
          // Just try to catch any random failures that could have come
797
          // during execution.
2040.7.1 by Monty Taylor
Added an abort macro and an abort_exception.
798
          DRIZZLE_ABORT;
1643.6.4 by Djellel E. Difallah
Added data dictionary view 'Query_cache_entries' to list current cached queries. Added a UDF print_query_cache_meta(key) to display a text representation of the metadata
799
        }
800
        DRIZZLE_QUERY_EXEC_DONE(0);
801
      }
802
    }
803
  }
804
  else
805
  {
806
    assert(session->is_error());
807
  }
808
  lex->unit.cleanup();
809
  session->set_proc_info("freeing items");
810
  session->end_statement();
811
  session->cleanup_after_query();
2040.4.3 by Brian Aker
Scale down the calls to universal_time().
812
  session->set_end_timer();
1 by brian
clean slate
813
}
814
815
816
817
/**
818
  Store field definition for create.
819
820
  @return
821
    Return 0 if ok
822
*/
823
520.1.22 by Brian Aker
Second pass of thd cleanup
824
bool add_field_to_list(Session *session, LEX_STRING *field_name, enum_field_types type,
1 by brian
clean slate
825
		       char *length, char *decimals,
438.1.13 by Brian Aker
uint cleanup.
826
		       uint32_t type_modifier,
1 by brian
clean slate
827
                       enum column_format_type column_format,
828
		       Item *default_value, Item *on_update_value,
829
                       LEX_STRING *comment,
830
		       char *change,
998.1.2 by Brian Aker
First pass on removing virt columns
831
                       List<String> *interval_list, const CHARSET_INFO * const cs)
1 by brian
clean slate
832
{
1052.2.3 by Nathan Williams
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.
833
  register CreateField *new_field;
520.1.22 by Brian Aker
Second pass of thd cleanup
834
  LEX  *lex= session->lex;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
835
  statement::AlterTable *statement= (statement::AlterTable *)lex->statement;
1 by brian
clean slate
836
837
  if (check_identifier_name(field_name, ER_TOO_LONG_IDENT))
1135 by Brian Aker
Merge of Lex -> Statement refactoring
838
    return true;
1 by brian
clean slate
839
840
  if (type_modifier & PRI_KEY_FLAG)
841
  {
842
    Key *key;
843
    lex->col_list.push_back(new Key_part_spec(*field_name, 0));
844
    key= new Key(Key::PRIMARY, null_lex_str,
845
                      &default_key_create_info,
846
                      0, lex->col_list);
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
847
    statement->alter_info.key_list.push_back(key);
1 by brian
clean slate
848
    lex->col_list.empty();
849
  }
850
  if (type_modifier & (UNIQUE_FLAG | UNIQUE_KEY_FLAG))
851
  {
852
    Key *key;
853
    lex->col_list.push_back(new Key_part_spec(*field_name, 0));
854
    key= new Key(Key::UNIQUE, null_lex_str,
855
                 &default_key_create_info, 0,
856
                 lex->col_list);
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
857
    statement->alter_info.key_list.push_back(key);
1 by brian
clean slate
858
    lex->col_list.empty();
859
  }
860
861
  if (default_value)
862
  {
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
863
    /*
1 by brian
clean slate
864
      Default value should be literal => basic constants =>
865
      no need fix_fields()
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
866
867
      We allow only one function as part of default value -
1 by brian
clean slate
868
      NOW() as default for TIMESTAMP type.
869
    */
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
870
    if (default_value->type() == Item::FUNC_ITEM &&
1 by brian
clean slate
871
        !(((Item_func*)default_value)->functype() == Item_func::NOW_FUNC &&
2046.2.1 by Brian Aker
First pass on micro timestamp.
872
         (type == DRIZZLE_TYPE_TIMESTAMP or type == DRIZZLE_TYPE_MICROTIME)))
1 by brian
clean slate
873
    {
874
      my_error(ER_INVALID_DEFAULT, MYF(0), field_name->str);
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
875
      return true;
1 by brian
clean slate
876
    }
877
    else if (default_value->type() == Item::NULL_ITEM)
878
    {
879
      default_value= 0;
2064.2.2 by Brian Aker
Formattting, etc.
880
      if ((type_modifier & (NOT_NULL_FLAG | AUTO_INCREMENT_FLAG)) == NOT_NULL_FLAG)
1 by brian
clean slate
881
      {
882
	my_error(ER_INVALID_DEFAULT, MYF(0), field_name->str);
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
883
	return true;
1 by brian
clean slate
884
      }
885
    }
886
    else if (type_modifier & AUTO_INCREMENT_FLAG)
887
    {
888
      my_error(ER_INVALID_DEFAULT, MYF(0), field_name->str);
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
889
      return true;
1 by brian
clean slate
890
    }
891
  }
892
2046.2.1 by Brian Aker
First pass on micro timestamp.
893
  if (on_update_value && (type != DRIZZLE_TYPE_TIMESTAMP and type != DRIZZLE_TYPE_MICROTIME))
1 by brian
clean slate
894
  {
895
    my_error(ER_INVALID_ON_UPDATE, MYF(0), field_name->str);
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
896
    return true;
1 by brian
clean slate
897
  }
898
1052.2.3 by Nathan Williams
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.
899
  if (!(new_field= new CreateField()) ||
520.1.22 by Brian Aker
Second pass of thd cleanup
900
      new_field->init(session, field_name->str, type, length, decimals, type_modifier,
1 by brian
clean slate
901
                      default_value, on_update_value, comment, change,
998.1.2 by Brian Aker
First pass on removing virt columns
902
                      interval_list, cs, 0, column_format))
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
903
    return true;
1 by brian
clean slate
904
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
905
  statement->alter_info.create_list.push_back(new_field);
1 by brian
clean slate
906
  lex->last_field=new_field;
1128.2.4 by Brian Aker
AlterInfo refactor back to class.
907
908
  return false;
1 by brian
clean slate
909
}
910
911
912
/**
913
  Add a table to list of used tables.
914
915
  @param table		Table to add
916
  @param alias		alias for table (or null if no alias)
917
  @param table_options	A set of the following bits:
918
                         - TL_OPTION_UPDATING : Table will be updated
919
                         - TL_OPTION_FORCE_INDEX : Force usage of index
920
                         - TL_OPTION_ALIAS : an alias in multi table DELETE
921
  @param lock_type	How table should be locked
922
  @param use_index	List of indexed used in USE INDEX
923
  @param ignore_index	List of indexed used in IGNORE INDEX
924
925
  @retval
926
      0		Error
927
  @retval
327.2.4 by Brian Aker
Refactoring table.h
928
    \#	Pointer to TableList element added to the total table list
1 by brian
clean slate
929
*/
930
846 by Brian Aker
Removing on typedeffed class.
931
TableList *Select_Lex::add_table_to_list(Session *session,
2096.1.4 by Brian Aker
Clean up errors and pass information in creation of statement.
932
                                         Table_ident *table,
933
                                         LEX_STRING *alias,
934
                                         const bitset<NUM_OF_TABLE_OPTIONS>& table_options,
935
                                         thr_lock_type lock_type,
936
                                         List<Index_hint> *index_hints_arg,
1858.1.2 by Padraig O'Sullivan
Converted another uint8_t type to be a bitset.
937
                                         LEX_STRING *option)
1 by brian
clean slate
938
{
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
939
  TableList *ptr;
327.2.4 by Brian Aker
Refactoring table.h
940
  TableList *previous_table_ref; /* The table preceding the current one. */
1 by brian
clean slate
941
  char *alias_str;
520.1.22 by Brian Aker
Second pass of thd cleanup
942
  LEX *lex= session->lex;
1 by brian
clean slate
943
944
  if (!table)
1054.1.5 by Brian Aker
Formatting/remove dead variables.
945
    return NULL;				// End of memory
1 by brian
clean slate
946
  alias_str= alias ? alias->str : table->table.str;
1858.1.2 by Padraig O'Sullivan
Converted another uint8_t type to be a bitset.
947
  if (! table_options.test(TL_OPTION_ALIAS) &&
1 by brian
clean slate
948
      check_table_name(table->table.str, table->table.length))
949
  {
950
    my_error(ER_WRONG_TABLE_NAME, MYF(0), table->table.str);
1054.1.5 by Brian Aker
Formatting/remove dead variables.
951
    return NULL;
1 by brian
clean slate
952
  }
953
1415 by Brian Aker
Mass overhaul to use schema_identifier.
954
  if (table->is_derived_table() == false && table->db.str)
1 by brian
clean slate
955
  {
1415 by Brian Aker
Mass overhaul to use schema_identifier.
956
    my_casedn_str(files_charset_info, table->db.str);
957
2087.4.1 by Brian Aker
Merge in schema identifier.
958
    identifier::Schema schema_identifier(string(table->db.str));
2159.2.6 by Brian Aker
Finalize interface for schema.
959
    if (not schema::check(*session, schema_identifier))
1415 by Brian Aker
Mass overhaul to use schema_identifier.
960
    {
961
962
      my_error(ER_WRONG_DB_NAME, MYF(0), table->db.str);
963
      return NULL;
964
    }
1 by brian
clean slate
965
  }
966
967
  if (!alias)					/* Alias is case sensitive */
968
  {
969
    if (table->sel)
970
    {
971
      my_message(ER_DERIVED_MUST_HAVE_ALIAS,
972
                 ER(ER_DERIVED_MUST_HAVE_ALIAS), MYF(0));
1054.1.5 by Brian Aker
Formatting/remove dead variables.
973
      return NULL;
1 by brian
clean slate
974
    }
2148.7.8 by Brian Aker
Remove bits from Session where was providing a service directly.
975
    if (!(alias_str= (char*) session->getMemRoot()->duplicate(alias_str,table->table.length+1)))
1054.1.5 by Brian Aker
Formatting/remove dead variables.
976
      return NULL;
1 by brian
clean slate
977
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
978
  if (!(ptr = (TableList *) session->calloc(sizeof(TableList))))
971.6.11 by Eric Day
Removed purecov messages.
979
    return NULL;
1672.3.5 by Brian Aker
This replaces the allocation we do for insert/update.
980
1 by brian
clean slate
981
  if (table->db.str)
982
  {
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
983
    ptr->setIsFqtn(true);
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
984
    ptr->setSchemaName(table->db.str);
1 by brian
clean slate
985
    ptr->db_length= table->db.length;
986
  }
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
987
  else if (lex->copy_db_to(ptr->getSchemaNamePtr(), &ptr->db_length))
1054.1.5 by Brian Aker
Formatting/remove dead variables.
988
    return NULL;
1 by brian
clean slate
989
  else
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
990
    ptr->setIsFqtn(false);
1 by brian
clean slate
991
992
  ptr->alias= alias_str;
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
993
  ptr->setIsAlias(alias ? true : false);
1874.1.2 by Brian Aker
Encapsulate table_name from table_list.
994
  ptr->setTableName(table->table.str);
1 by brian
clean slate
995
  ptr->table_name_length=table->table.length;
996
  ptr->lock_type=   lock_type;
1858.1.2 by Padraig O'Sullivan
Converted another uint8_t type to be a bitset.
997
  ptr->force_index= table_options.test(TL_OPTION_FORCE_INDEX);
998
  ptr->ignore_leaves= table_options.test(TL_OPTION_IGNORE_LEAVES);
1 by brian
clean slate
999
  ptr->derived=	    table->sel;
1000
  ptr->select_lex=  lex->current_select;
1001
  ptr->index_hints= index_hints_arg;
1002
  ptr->option= option ? option->str : 0;
1003
  /* check that used name is unique */
1004
  if (lock_type != TL_IGNORE)
1005
  {
327.2.4 by Brian Aker
Refactoring table.h
1006
    TableList *first_table= (TableList*) table_list.first;
1007
    for (TableList *tables= first_table ;
1 by brian
clean slate
1008
	 tables ;
1009
	 tables=tables->next_local)
1010
    {
2085.2.3 by Brian Aker
Fix strcasecmp issues (ie, check UTF-8).
1011
      if (not my_strcasecmp(table_alias_charset, alias_str, tables->alias) &&
1012
	  not my_strcasecmp(system_charset_info, ptr->getSchemaName(), tables->getSchemaName()))
1 by brian
clean slate
1013
      {
971.6.11 by Eric Day
Removed purecov messages.
1014
	my_error(ER_NONUNIQ_TABLE, MYF(0), alias_str);
1015
	return NULL;
1 by brian
clean slate
1016
      }
1017
    }
1018
  }
1019
  /* Store the table reference preceding the current one. */
1020
  if (table_list.elements > 0)
1021
  {
1022
    /*
327.2.4 by Brian Aker
Refactoring table.h
1023
      table_list.next points to the last inserted TableList->next_local'
1 by brian
clean slate
1024
      element
1025
      We don't use the offsetof() macro here to avoid warnings from gcc
1026
    */
327.2.4 by Brian Aker
Refactoring table.h
1027
    previous_table_ref= (TableList*) ((char*) table_list.next -
1 by brian
clean slate
1028
                                       ((char*) &(ptr->next_local) -
1029
                                        (char*) ptr));
1030
    /*
1031
      Set next_name_resolution_table of the previous table reference to point
1032
      to the current table reference. In effect the list
327.2.4 by Brian Aker
Refactoring table.h
1033
      TableList::next_name_resolution_table coincides with
1034
      TableList::next_local. Later this may be changed in
1 by brian
clean slate
1035
      store_top_level_join_columns() for NATURAL/USING joins.
1036
    */
1037
    previous_table_ref->next_name_resolution_table= ptr;
1038
  }
1039
1040
  /*
1041
    Link the current table reference in a local list (list for current select).
1042
    Notice that as a side effect here we set the next_local field of the
1043
    previous table reference to 'ptr'. Here we also add one element to the
1044
    list 'table_list'.
1045
  */
481 by Brian Aker
Remove all of uchar.
1046
  table_list.link_in_list((unsigned char*) ptr, (unsigned char**) &ptr->next_local);
1 by brian
clean slate
1047
  ptr->next_name_resolution_table= NULL;
1048
  /* Link table in global list (all used tables) */
1049
  lex->add_to_query_tables(ptr);
1054.1.5 by Brian Aker
Formatting/remove dead variables.
1050
  return ptr;
1 by brian
clean slate
1051
}
1052
1053
1054
/**
1055
  Initialize a new table list for a nested join.
1056
327.2.4 by Brian Aker
Refactoring table.h
1057
    The function initializes a structure of the TableList type
1 by brian
clean slate
1058
    for a nested join. It sets up its nested join list as empty.
1059
    The created structure is added to the front of the current
846 by Brian Aker
Removing on typedeffed class.
1060
    join list in the Select_Lex object. Then the function
1 by brian
clean slate
1061
    changes the current nest level for joins to refer to the newly
1062
    created empty list after having saved the info on the old level
1063
    in the initialized structure.
1064
520.1.22 by Brian Aker
Second pass of thd cleanup
1065
  @param session         current thread
1 by brian
clean slate
1066
1067
  @retval
1068
    0   if success
1069
  @retval
1070
    1   otherwise
1071
*/
1072
846 by Brian Aker
Removing on typedeffed class.
1073
bool Select_Lex::init_nested_join(Session *session)
1 by brian
clean slate
1074
{
327.2.4 by Brian Aker
Refactoring table.h
1075
  TableList *ptr;
2141.3.3 by vjsamuel1990 at gmail
Merge change nested_join_st to NestedJoin
1076
  NestedJoin *nested_join;
1 by brian
clean slate
1077
520.1.22 by Brian Aker
Second pass of thd cleanup
1078
  if (!(ptr= (TableList*) session->calloc(ALIGN_SIZE(sizeof(TableList))+
2141.3.3 by vjsamuel1990 at gmail
Merge change nested_join_st to NestedJoin
1079
                                       sizeof(NestedJoin))))
1054.1.5 by Brian Aker
Formatting/remove dead variables.
1080
    return true;
2141.3.3 by vjsamuel1990 at gmail
Merge change nested_join_st to NestedJoin
1081
  ptr->setNestedJoin(((NestedJoin*) ((unsigned char*) ptr + ALIGN_SIZE(sizeof(TableList)))));
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
1082
  nested_join= ptr->getNestedJoin();
1 by brian
clean slate
1083
  join_list->push_front(ptr);
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
1084
  ptr->setEmbedding(embedding);
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
1085
  ptr->setJoinList(join_list);
1 by brian
clean slate
1086
  ptr->alias= (char*) "(nested_join)";
1087
  embedding= ptr;
1088
  join_list= &nested_join->join_list;
1089
  join_list->empty();
1054.1.5 by Brian Aker
Formatting/remove dead variables.
1090
  return false;
1 by brian
clean slate
1091
}
1092
1093
1094
/**
1095
  End a nested join table list.
1096
1097
    The function returns to the previous join nest level.
1098
    If the current level contains only one member, the function
1099
    moves it one level up, eliminating the nest.
1100
520.1.22 by Brian Aker
Second pass of thd cleanup
1101
  @param session         current thread
1 by brian
clean slate
1102
1103
  @return
327.2.4 by Brian Aker
Refactoring table.h
1104
    - Pointer to TableList element added to the total table list, if success
1 by brian
clean slate
1105
    - 0, otherwise
1106
*/
1107
846 by Brian Aker
Removing on typedeffed class.
1108
TableList *Select_Lex::end_nested_join(Session *)
1 by brian
clean slate
1109
{
327.2.4 by Brian Aker
Refactoring table.h
1110
  TableList *ptr;
2141.3.3 by vjsamuel1990 at gmail
Merge change nested_join_st to NestedJoin
1111
  NestedJoin *nested_join;
1 by brian
clean slate
1112
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1113
  assert(embedding);
1 by brian
clean slate
1114
  ptr= embedding;
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
1115
  join_list= ptr->getJoinList();
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
1116
  embedding= ptr->getEmbedding();
1117
  nested_join= ptr->getNestedJoin();
1 by brian
clean slate
1118
  if (nested_join->join_list.elements == 1)
1119
  {
327.2.4 by Brian Aker
Refactoring table.h
1120
    TableList *embedded= nested_join->join_list.head();
1 by brian
clean slate
1121
    join_list->pop();
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
1122
    embedded->setJoinList(join_list);
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
1123
    embedded->setEmbedding(embedding);
1 by brian
clean slate
1124
    join_list->push_front(embedded);
1125
    ptr= embedded;
1126
  }
1127
  else if (nested_join->join_list.elements == 0)
1128
  {
1129
    join_list->pop();
1054.1.5 by Brian Aker
Formatting/remove dead variables.
1130
    ptr= NULL;                                     // return value
1 by brian
clean slate
1131
  }
1054.1.5 by Brian Aker
Formatting/remove dead variables.
1132
  return ptr;
1 by brian
clean slate
1133
}
1134
1135
1136
/**
1137
  Nest last join operation.
1138
1139
    The function nest last join operation as if it was enclosed in braces.
1140
520.1.22 by Brian Aker
Second pass of thd cleanup
1141
  @param session         current thread
1 by brian
clean slate
1142
1143
  @retval
1144
    0  Error
1145
  @retval
327.2.4 by Brian Aker
Refactoring table.h
1146
    \#  Pointer to TableList element created for the new nested join
1 by brian
clean slate
1147
*/
1148
846 by Brian Aker
Removing on typedeffed class.
1149
TableList *Select_Lex::nest_last_join(Session *session)
1 by brian
clean slate
1150
{
327.2.4 by Brian Aker
Refactoring table.h
1151
  TableList *ptr;
2141.3.3 by vjsamuel1990 at gmail
Merge change nested_join_st to NestedJoin
1152
  NestedJoin *nested_join;
327.2.4 by Brian Aker
Refactoring table.h
1153
  List<TableList> *embedded_list;
1 by brian
clean slate
1154
520.1.22 by Brian Aker
Second pass of thd cleanup
1155
  if (!(ptr= (TableList*) session->calloc(ALIGN_SIZE(sizeof(TableList))+
2141.3.3 by vjsamuel1990 at gmail
Merge change nested_join_st to NestedJoin
1156
                                          sizeof(NestedJoin))))
1054.1.5 by Brian Aker
Formatting/remove dead variables.
1157
    return NULL;
2141.3.3 by vjsamuel1990 at gmail
Merge change nested_join_st to NestedJoin
1158
  ptr->setNestedJoin(((NestedJoin*) ((unsigned char*) ptr + ALIGN_SIZE(sizeof(TableList)))));
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
1159
  nested_join= ptr->getNestedJoin();
1160
  ptr->setEmbedding(embedding);
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
1161
  ptr->setJoinList(join_list);
1 by brian
clean slate
1162
  ptr->alias= (char*) "(nest_last_join)";
1163
  embedded_list= &nested_join->join_list;
1164
  embedded_list->empty();
1165
438.1.13 by Brian Aker
uint cleanup.
1166
  for (uint32_t i=0; i < 2; i++)
1 by brian
clean slate
1167
  {
327.2.4 by Brian Aker
Refactoring table.h
1168
    TableList *table= join_list->pop();
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
1169
    table->setJoinList(embedded_list);
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
1170
    table->setEmbedding(ptr);
1 by brian
clean slate
1171
    embedded_list->push_back(table);
1172
    if (table->natural_join)
1173
    {
55 by brian
Update for using real bool types.
1174
      ptr->is_natural_join= true;
1 by brian
clean slate
1175
      /*
1176
        If this is a JOIN ... USING, move the list of joined fields to the
1177
        table reference that describes the join.
1178
      */
1179
      if (prev_join_using)
1180
        ptr->join_using_fields= prev_join_using;
1181
    }
1182
  }
1183
  join_list->push_front(ptr);
1184
  nested_join->used_tables= nested_join->not_null_tables= (table_map) 0;
1054.1.5 by Brian Aker
Formatting/remove dead variables.
1185
  return ptr;
1 by brian
clean slate
1186
}
1187
1188
1189
/**
1190
  Add a table to the current join list.
1191
1192
    The function puts a table in front of the current join list
846 by Brian Aker
Removing on typedeffed class.
1193
    of Select_Lex object.
1 by brian
clean slate
1194
    Thus, joined tables are put into this list in the reverse order
1195
    (the most outer join operation follows first).
1196
1197
  @param table       the table to add
1198
1199
  @return
1200
    None
1201
*/
1202
846 by Brian Aker
Removing on typedeffed class.
1203
void Select_Lex::add_joined_table(TableList *table)
1 by brian
clean slate
1204
{
1205
  join_list->push_front(table);
1637.2.6 by Vijay Samuel
Merge encapsulate TableList-1.
1206
  table->setJoinList(join_list);
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
1207
  table->setEmbedding(embedding);
1 by brian
clean slate
1208
}
1209
1210
1211
/**
1212
  Convert a right join into equivalent left join.
1213
1214
    The function takes the current join list t[0],t[1] ... and
1215
    effectively converts it into the list t[1],t[0] ...
1216
    Although the outer_join flag for the new nested table contains
1217
    JOIN_TYPE_RIGHT, it will be handled as the inner table of a left join
1218
    operation.
1219
1220
  EXAMPLES
1221
  @verbatim
1222
    SELECT * FROM t1 RIGHT JOIN t2 ON on_expr =>
1223
      SELECT * FROM t2 LEFT JOIN t1 ON on_expr
1224
1225
    SELECT * FROM t1,t2 RIGHT JOIN t3 ON on_expr =>
1226
      SELECT * FROM t1,t3 LEFT JOIN t2 ON on_expr
1227
1228
    SELECT * FROM t1,t2 RIGHT JOIN (t3,t4) ON on_expr =>
1229
      SELECT * FROM t1,(t3,t4) LEFT JOIN t2 ON on_expr
1230
1231
    SELECT * FROM t1 LEFT JOIN t2 ON on_expr1 RIGHT JOIN t3  ON on_expr2 =>
1232
      SELECT * FROM t3 LEFT JOIN (t1 LEFT JOIN t2 ON on_expr2) ON on_expr1
1233
   @endverbatim
1234
520.1.22 by Brian Aker
Second pass of thd cleanup
1235
  @param session         current thread
1 by brian
clean slate
1236
1237
  @return
1238
    - Pointer to the table representing the inner table, if success
1239
    - 0, otherwise
1240
*/
1241
846 by Brian Aker
Removing on typedeffed class.
1242
TableList *Select_Lex::convert_right_join()
1 by brian
clean slate
1243
{
327.2.4 by Brian Aker
Refactoring table.h
1244
  TableList *tab2= join_list->pop();
1245
  TableList *tab1= join_list->pop();
1 by brian
clean slate
1246
1247
  join_list->push_front(tab2);
1248
  join_list->push_front(tab1);
1249
  tab1->outer_join|= JOIN_TYPE_RIGHT;
1250
1054.1.5 by Brian Aker
Formatting/remove dead variables.
1251
  return tab1;
1 by brian
clean slate
1252
}
1253
1254
/**
1255
  Set lock for all tables in current select level.
1256
1257
  @param lock_type			Lock to set for tables
1258
1259
  @note
1260
    If lock is a write lock, then tables->updating is set 1
1261
    This is to get tables_ok to know that the table is updated by the
1262
    query
1263
*/
1264
846 by Brian Aker
Removing on typedeffed class.
1265
void Select_Lex::set_lock_for_tables(thr_lock_type lock_type)
1 by brian
clean slate
1266
{
327.2.4 by Brian Aker
Refactoring table.h
1267
  for (TableList *tables= (TableList*) table_list.first;
1 by brian
clean slate
1268
       tables;
1269
       tables= tables->next_local)
1270
  {
1271
    tables->lock_type= lock_type;
1272
  }
1273
}
1274
1275
1276
/**
846 by Brian Aker
Removing on typedeffed class.
1277
  Create a fake Select_Lex for a unit.
1 by brian
clean slate
1278
846 by Brian Aker
Removing on typedeffed class.
1279
    The method create a fake Select_Lex object for a unit.
1 by brian
clean slate
1280
    This object is created for any union construct containing a union
1281
    operation and also for any single select union construct of the form
1282
    @verbatim
1273.2.9 by Stewart Smith
fix accidental mangling of comment: s/order_st BY/ORDER BY/. in sql_parse.cc
1283
    (SELECT ... ORDER BY order_list [LIMIT n]) ORDER BY ...
1 by brian
clean slate
1284
    @endvarbatim
1285
    or of the form
1286
    @varbatim
1273.2.9 by Stewart Smith
fix accidental mangling of comment: s/order_st BY/ORDER BY/. in sql_parse.cc
1287
    (SELECT ... ORDER BY LIMIT n) ORDER BY ...
1 by brian
clean slate
1288
    @endvarbatim
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1289
520.1.22 by Brian Aker
Second pass of thd cleanup
1290
  @param session_arg		   thread handle
1 by brian
clean slate
1291
1292
  @note
1293
    The object is used to retrieve rows from the temporary table
1294
    where the result on the union is obtained.
1295
1296
  @retval
1297
    1     on failure to create the object
1298
  @retval
1299
    0     on success
1300
*/
1301
848 by Brian Aker
typdef class removal (just... use the name of the class).
1302
bool Select_Lex_Unit::add_fake_select_lex(Session *session_arg)
1 by brian
clean slate
1303
{
846 by Brian Aker
Removing on typedeffed class.
1304
  Select_Lex *first_sl= first_select();
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1305
  assert(!fake_select_lex);
1 by brian
clean slate
1306
846 by Brian Aker
Removing on typedeffed class.
1307
  if (!(fake_select_lex= new (session_arg->mem_root) Select_Lex()))
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1308
      return(1);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1309
  fake_select_lex->include_standalone(this,
847 by Brian Aker
More typdef class removal.
1310
                                      (Select_Lex_Node**)&fake_select_lex);
1 by brian
clean slate
1311
  fake_select_lex->select_number= INT_MAX;
520.1.22 by Brian Aker
Second pass of thd cleanup
1312
  fake_select_lex->parent_lex= session_arg->lex; /* Used in init_query. */
1 by brian
clean slate
1313
  fake_select_lex->make_empty_select();
1314
  fake_select_lex->linkage= GLOBAL_OPTIONS_TYPE;
1315
  fake_select_lex->select_limit= 0;
1316
1317
  fake_select_lex->context.outer_context=first_sl->context.outer_context;
1273.2.9 by Stewart Smith
fix accidental mangling of comment: s/order_st BY/ORDER BY/. in sql_parse.cc
1318
  /* allow item list resolving in fake select for ORDER BY */
55 by brian
Update for using real bool types.
1319
  fake_select_lex->context.resolve_in_select_list= true;
1 by brian
clean slate
1320
  fake_select_lex->context.select_lex= fake_select_lex;
1321
1322
  if (!is_union())
1323
  {
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1324
    /*
1325
      This works only for
1273.2.9 by Stewart Smith
fix accidental mangling of comment: s/order_st BY/ORDER BY/. in sql_parse.cc
1326
      (SELECT ... ORDER BY list [LIMIT n]) ORDER BY order_list [LIMIT m],
1327
      (SELECT ... LIMIT n) ORDER BY order_list [LIMIT m]
1 by brian
clean slate
1328
      just before the parser starts processing order_list
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1329
    */
1 by brian
clean slate
1330
    global_parameters= fake_select_lex;
1331
    fake_select_lex->no_table_names_allowed= 1;
520.1.22 by Brian Aker
Second pass of thd cleanup
1332
    session_arg->lex->current_select= fake_select_lex;
1 by brian
clean slate
1333
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
1334
  session_arg->lex->pop_context();
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1335
  return(0);
1 by brian
clean slate
1336
}
1337
1338
1339
/**
1340
  Push a new name resolution context for a JOIN ... ON clause to the
1341
  context stack of a query block.
1342
1343
    Create a new name resolution context for a JOIN ... ON clause,
1344
    set the first and last leaves of the list of table references
1345
    to be used for name resolution, and push the newly created
1346
    context to the stack of contexts of the query.
1347
520.1.22 by Brian Aker
Second pass of thd cleanup
1348
  @param session       pointer to current thread
1 by brian
clean slate
1349
  @param left_op   left  operand of the JOIN
1350
  @param right_op  rigth operand of the JOIN
1351
1352
  @retval
55 by brian
Update for using real bool types.
1353
    false  if all is OK
1 by brian
clean slate
1354
  @retval
55 by brian
Update for using real bool types.
1355
    true   if a memory allocation error occured
1 by brian
clean slate
1356
*/
1357
1358
bool
520.1.22 by Brian Aker
Second pass of thd cleanup
1359
push_new_name_resolution_context(Session *session,
327.2.4 by Brian Aker
Refactoring table.h
1360
                                 TableList *left_op, TableList *right_op)
1 by brian
clean slate
1361
{
1362
  Name_resolution_context *on_context;
520.1.22 by Brian Aker
Second pass of thd cleanup
1363
  if (!(on_context= new (session->mem_root) Name_resolution_context))
55 by brian
Update for using real bool types.
1364
    return true;
1 by brian
clean slate
1365
  on_context->init();
1366
  on_context->first_name_resolution_table=
1367
    left_op->first_leaf_for_name_resolution();
1368
  on_context->last_name_resolution_table=
1369
    right_op->last_leaf_for_name_resolution();
520.1.22 by Brian Aker
Second pass of thd cleanup
1370
  return session->lex->push_context(on_context);
1 by brian
clean slate
1371
}
1372
1373
1374
/**
1375
  Add an ON condition to the second operand of a JOIN ... ON.
1376
1377
    Add an ON condition to the right operand of a JOIN ... ON clause.
1378
1379
  @param b     the second operand of a JOIN ... ON
1380
  @param expr  the condition to be added to the ON clause
1381
1382
  @retval
55 by brian
Update for using real bool types.
1383
    false  if there was some error
1 by brian
clean slate
1384
  @retval
55 by brian
Update for using real bool types.
1385
    true   if all is OK
1 by brian
clean slate
1386
*/
1387
327.2.4 by Brian Aker
Refactoring table.h
1388
void add_join_on(TableList *b, Item *expr)
1 by brian
clean slate
1389
{
1390
  if (expr)
1391
  {
1392
    if (!b->on_expr)
1393
      b->on_expr= expr;
1394
    else
1395
    {
1396
      /*
1397
        If called from the parser, this happens if you have both a
1398
        right and left join. If called later, it happens if we add more
1399
        than one condition to the ON clause.
1400
      */
1401
      b->on_expr= new Item_cond_and(b->on_expr,expr);
1402
    }
1403
    b->on_expr->top_level_item();
1404
  }
1405
}
1406
1407
1408
/**
1409
  Mark that there is a NATURAL JOIN or JOIN ... USING between two
1410
  tables.
1411
1412
    This function marks that table b should be joined with a either via
1413
    a NATURAL JOIN or via JOIN ... USING. Both join types are special
1414
    cases of each other, so we treat them together. The function
1415
    setup_conds() creates a list of equal condition between all fields
1416
    of the same name for NATURAL JOIN or the fields in 'using_fields'
1417
    for JOIN ... USING. The list of equality conditions is stored
1418
    either in b->on_expr, or in JOIN::conds, depending on whether there
1419
    was an outer join.
1420
1421
  EXAMPLE
1422
  @verbatim
1423
    SELECT * FROM t1 NATURAL LEFT JOIN t2
1424
     <=>
1425
    SELECT * FROM t1 LEFT JOIN t2 ON (t1.i=t2.i and t1.j=t2.j ... )
1426
1427
    SELECT * FROM t1 NATURAL JOIN t2 WHERE <some_cond>
1428
     <=>
1429
    SELECT * FROM t1, t2 WHERE (t1.i=t2.i and t1.j=t2.j and <some_cond>)
1430
1431
    SELECT * FROM t1 JOIN t2 USING(j) WHERE <some_cond>
1432
     <=>
1433
    SELECT * FROM t1, t2 WHERE (t1.j=t2.j and <some_cond>)
1434
   @endverbatim
1435
1436
  @param a		  Left join argument
1437
  @param b		  Right join argument
1438
  @param using_fields    Field names from USING clause
1439
*/
1440
327.2.4 by Brian Aker
Refactoring table.h
1441
void add_join_natural(TableList *a, TableList *b, List<String> *using_fields,
846 by Brian Aker
Removing on typedeffed class.
1442
                      Select_Lex *lex)
1 by brian
clean slate
1443
{
1444
  b->natural_join= a;
1445
  lex->prev_join_using= using_fields;
1446
}
1447
1448
1449
/**
1450
  Check if the select is a simple select (not an union).
1451
1452
  @retval
1453
    0	ok
1454
  @retval
1455
    1	error	; In this case the error messege is sent to the client
1456
*/
1457
2041.3.15 by Brian Aker
Cleanup error usage around identifier usage.
1458
bool check_simple_select(Session::pointer session)
1 by brian
clean slate
1459
{
520.1.22 by Brian Aker
Second pass of thd cleanup
1460
  LEX *lex= session->lex;
1 by brian
clean slate
1461
  if (lex->current_select != &lex->select_lex)
1462
  {
1463
    char command[80];
520.1.22 by Brian Aker
Second pass of thd cleanup
1464
    Lex_input_stream *lip= session->m_lip;
629.5.2 by Toru Maesaka
Second pass of replacing MySQL's strmake() with libc calls
1465
    strncpy(command, lip->yylval->symbol.str,
1067.4.4 by Nathan Williams
The rest of the files in the drizzled directory were purged of the cmin macro and replace with std::min (except for the definition in globals.h and 1 usage in stacktrace.cc).
1466
            min(lip->yylval->symbol.length, (uint32_t)(sizeof(command)-1)));
1467
    command[min(lip->yylval->symbol.length, (uint32_t)(sizeof(command)-1))]=0;
1 by brian
clean slate
1468
    my_error(ER_CANT_USE_OPTION_HERE, MYF(0), command);
1469
    return 1;
1470
  }
1471
  return 0;
1472
}
1473
1474
1475
/**
1476
  Construct ALL/ANY/SOME subquery Item.
1477
1478
  @param left_expr   pointer to left expression
1479
  @param cmp         compare function creator
1480
  @param all         true if we create ALL subquery
1481
  @param select_lex  pointer on parsed subquery structure
1482
1483
  @return
1484
    constructed Item (or 0 if out of memory)
1485
*/
1486
Item * all_any_subquery_creator(Item *left_expr,
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.
1487
                                chooser_compare_func_creator cmp,
1488
                                bool all,
846 by Brian Aker
Removing on typedeffed class.
1489
                                Select_Lex *select_lex)
1 by brian
clean slate
1490
{
1491
  if ((cmp == &comp_eq_creator) && !all)       //  = ANY <=> IN
1492
    return new Item_in_subselect(left_expr, select_lex);
1493
1494
  if ((cmp == &comp_ne_creator) && all)        // <> ALL <=> NOT IN
1495
    return new Item_func_not(new Item_in_subselect(left_expr, select_lex));
1496
1497
  Item_allany_subselect *it=
1498
    new Item_allany_subselect(left_expr, cmp, select_lex, all);
1499
  if (all)
1500
    return it->upper_item= new Item_func_not_all(it);	/* ALL */
1501
1502
  return it->upper_item= new Item_func_nop_all(it);      /* ANY/SOME */
1503
}
1504
1505
1506
/**
826 by Brian Aker
Simplify update
1507
  Update query pre-check.
1 by brian
clean slate
1508
520.1.22 by Brian Aker
Second pass of thd cleanup
1509
  @param session		Thread handler
1 by brian
clean slate
1510
  @param tables	Global/local table list (have to be the same)
1511
1512
  @retval
55 by brian
Update for using real bool types.
1513
    false OK
1 by brian
clean slate
1514
  @retval
55 by brian
Update for using real bool types.
1515
    true  Error
1 by brian
clean slate
1516
*/
1517
826 by Brian Aker
Simplify update
1518
bool update_precheck(Session *session, TableList *)
1 by brian
clean slate
1519
{
1520
  const char *msg= 0;
520.1.22 by Brian Aker
Second pass of thd cleanup
1521
  LEX *lex= session->lex;
846 by Brian Aker
Removing on typedeffed class.
1522
  Select_Lex *select_lex= &lex->select_lex;
1 by brian
clean slate
1523
826 by Brian Aker
Simplify update
1524
  if (session->lex->select_lex.item_list.elements != session->lex->value_list.elements)
1 by brian
clean slate
1525
  {
1526
    my_message(ER_WRONG_VALUE_COUNT, ER(ER_WRONG_VALUE_COUNT), MYF(0));
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1527
    return(true);
1 by brian
clean slate
1528
  }
1529
826 by Brian Aker
Simplify update
1530
  if (session->lex->select_lex.table_list.elements > 1)
1 by brian
clean slate
1531
  {
826 by Brian Aker
Simplify update
1532
    if (select_lex->order_list.elements)
1533
      msg= "ORDER BY";
1534
    else if (select_lex->select_limit)
1535
      msg= "LIMIT";
1536
    if (msg)
1537
    {
1538
      my_error(ER_WRONG_USAGE, MYF(0), "UPDATE", msg);
1539
      return(true);
1540
    }
1 by brian
clean slate
1541
  }
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1542
  return(false);
1 by brian
clean slate
1543
}
1544
1545
1546
/**
1547
  simple INSERT query pre-check.
1548
520.1.22 by Brian Aker
Second pass of thd cleanup
1549
  @param session		Thread handler
1 by brian
clean slate
1550
  @param tables	Global table list
1551
1552
  @retval
55 by brian
Update for using real bool types.
1553
    false  OK
1 by brian
clean slate
1554
  @retval
55 by brian
Update for using real bool types.
1555
    true   error
1 by brian
clean slate
1556
*/
1557
575.1.2 by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead.
1558
bool insert_precheck(Session *session, TableList *)
1 by brian
clean slate
1559
{
520.1.22 by Brian Aker
Second pass of thd cleanup
1560
  LEX *lex= session->lex;
1 by brian
clean slate
1561
1562
  /*
1563
    Check that we have modify privileges for the first table and
1564
    select privileges for the rest
1565
  */
1566
  if (lex->update_list.elements != lex->value_list.elements)
1567
  {
1568
    my_message(ER_WRONG_VALUE_COUNT, ER(ER_WRONG_VALUE_COUNT), MYF(0));
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1569
    return(true);
1 by brian
clean slate
1570
  }
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1571
  return(false);
1 by brian
clean slate
1572
}
1573
1574
1575
/**
1576
  negate given expression.
1577
520.1.22 by Brian Aker
Second pass of thd cleanup
1578
  @param session  thread handler
1 by brian
clean slate
1579
  @param expr expression for negation
1580
1581
  @return
1582
    negated expression
1583
*/
1584
520.1.22 by Brian Aker
Second pass of thd cleanup
1585
Item *negate_expression(Session *session, Item *expr)
1 by brian
clean slate
1586
{
1587
  Item *negated;
1588
  if (expr->type() == Item::FUNC_ITEM &&
1589
      ((Item_func *) expr)->functype() == Item_func::NOT_FUNC)
1590
  {
1591
    /* it is NOT(NOT( ... )) */
1592
    Item *arg= ((Item_func *) expr)->arguments()[0];
520.1.22 by Brian Aker
Second pass of thd cleanup
1593
    enum_parsing_place place= session->lex->current_select->parsing_place;
1 by brian
clean slate
1594
    if (arg->is_bool_func() || place == IN_WHERE || place == IN_HAVING)
1595
      return arg;
1596
    /*
1597
      if it is not boolean function then we have to emulate value of
1598
      not(not(a)), it will be a != 0
1599
    */
1600
    return new Item_func_ne(arg, new Item_int((char*) "0", 0, 1));
1601
  }
1602
520.1.22 by Brian Aker
Second pass of thd cleanup
1603
  if ((negated= expr->neg_transformer(session)) != 0)
1 by brian
clean slate
1604
    return negated;
1605
  return new Item_func_not(expr);
1606
}
1607
1608
1609
/*
1610
  Check that char length of a string does not exceed some limit.
1611
1612
  SYNOPSIS
1613
  check_string_char_length()
1614
      str              string to be checked
1615
      err_msg          error message to be displayed if the string is too long
1616
      max_char_length  max length in symbols
1617
      cs               string charset
1618
1619
  RETURN
55 by brian
Update for using real bool types.
1620
    false   the passed string is not longer than max_char_length
1621
    true    the passed string is longer than max_char_length
1 by brian
clean slate
1622
*/
1623
1624
1625
bool check_string_char_length(LEX_STRING *str, const char *err_msg,
438.1.13 by Brian Aker
uint cleanup.
1626
                              uint32_t max_char_length, const CHARSET_INFO * const cs,
1 by brian
clean slate
1627
                              bool no_error)
1628
{
1629
  int well_formed_error;
438.1.13 by Brian Aker
uint cleanup.
1630
  uint32_t res= cs->cset->well_formed_len(cs, str->str, str->str + str->length,
1 by brian
clean slate
1631
                                      max_char_length, &well_formed_error);
1632
1633
  if (!well_formed_error &&  str->length == res)
55 by brian
Update for using real bool types.
1634
    return false;
1 by brian
clean slate
1635
1636
  if (!no_error)
1637
    my_error(ER_WRONG_STRING_LENGTH, MYF(0), str->str, err_msg, max_char_length);
55 by brian
Update for using real bool types.
1638
  return true;
1 by brian
clean slate
1639
}
1640
1641
2054.1.2 by Brian Aker
Rename of the Loooongggggg error type over to simply drizzled::error_t
1642
bool check_identifier_name(LEX_STRING *str, error_t err_code,
575.4.7 by Monty Taylor
More header cleanup.
1643
                           uint32_t max_char_length,
1644
                           const char *param_for_err_msg)
1 by brian
clean slate
1645
{
1646
  /*
1647
    We don't support non-BMP characters in identifiers at the moment,
1648
    so they should be prohibited until such support is done.
1649
    This is why we use the 3-byte utf8 to check well-formedness here.
1650
  */
760 by Brian Aker
Cleanup around UTf8 code.
1651
  const CHARSET_INFO * const cs= &my_charset_utf8mb4_general_ci;
1652
1 by brian
clean slate
1653
  int well_formed_error;
438.1.13 by Brian Aker
uint cleanup.
1654
  uint32_t res= cs->cset->well_formed_len(cs, str->str, str->str + str->length,
1 by brian
clean slate
1655
                                      max_char_length, &well_formed_error);
1656
1657
  if (well_formed_error)
1658
  {
1659
    my_error(ER_INVALID_CHARACTER_STRING, MYF(0), "identifier", str->str);
55 by brian
Update for using real bool types.
1660
    return true;
1 by brian
clean slate
1661
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1662
1 by brian
clean slate
1663
  if (str->length == res)
55 by brian
Update for using real bool types.
1664
    return false;
1 by brian
clean slate
1665
1666
  switch (err_code)
1667
  {
2041.3.14 by Brian Aker
Additional error cleanup.
1668
  case EE_OK:
1 by brian
clean slate
1669
    break;
1670
  case ER_WRONG_STRING_LENGTH:
2041.3.14 by Brian Aker
Additional error cleanup.
1671
    my_error(err_code, MYF(0), str->str, param_for_err_msg, max_char_length);
1 by brian
clean slate
1672
    break;
1673
  case ER_TOO_LONG_IDENT:
2041.3.14 by Brian Aker
Additional error cleanup.
1674
    my_error(err_code, MYF(0), str->str);
1 by brian
clean slate
1675
    break;
1676
  default:
51.1.61 by Jay Pipes
Removed/replaced BUG symbols and standardized TRUE/FALSE
1677
    assert(0);
1 by brian
clean slate
1678
    break;
1679
  }
2041.3.14 by Brian Aker
Additional error cleanup.
1680
55 by brian
Update for using real bool types.
1681
  return true;
1 by brian
clean slate
1682
}
1683
1684
1685
/**
520.4.50 by Monty Taylor
Finish changing the bison namespace argument from MYSQL to DRIZZLE
1686
  This is a wrapper of DRIZZLEparse(). All the code should call parse_sql()
1687
  instead of DRIZZLEparse().
1 by brian
clean slate
1688
520.1.22 by Brian Aker
Second pass of thd cleanup
1689
  @param session Thread context.
1 by brian
clean slate
1690
  @param lip Lexer context.
1691
1692
  @return Error status.
55 by brian
Update for using real bool types.
1693
    @retval false on success.
1694
    @retval true on parsing error.
1 by brian
clean slate
1695
*/
1696
1165.1.48 by Stewart Smith
make parse_sql static to sql_parse.cc
1697
static bool parse_sql(Session *session, Lex_input_stream *lip)
1 by brian
clean slate
1698
{
520.1.22 by Brian Aker
Second pass of thd cleanup
1699
  assert(session->m_lip == NULL);
1 by brian
clean slate
1700
1932.2.3 by Brian Aker
Updates for D-trace
1701
  DRIZZLE_QUERY_PARSE_START(session->getQueryString()->c_str());
1126.10.15 by Padraig O'Sullivan
Added calls to the parsing related dtrace probes.
1702
1 by brian
clean slate
1703
  /* Set Lex_input_stream. */
1704
520.1.22 by Brian Aker
Second pass of thd cleanup
1705
  session->m_lip= lip;
1 by brian
clean slate
1706
1707
  /* Parse the query. */
1708
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
1709
  bool parse_status= DRIZZLEparse(session) != 0;
520.1.22 by Brian Aker
Second pass of thd cleanup
1710
520.4.50 by Monty Taylor
Finish changing the bison namespace argument from MYSQL to DRIZZLE
1711
  /* Check that if DRIZZLEparse() failed, session->is_error() is set. */
520.1.22 by Brian Aker
Second pass of thd cleanup
1712
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
1713
  assert(!parse_status || session->is_error());
1 by brian
clean slate
1714
1715
  /* Reset Lex_input_stream. */
1716
520.1.22 by Brian Aker
Second pass of thd cleanup
1717
  session->m_lip= NULL;
1 by brian
clean slate
1718
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
1719
  DRIZZLE_QUERY_PARSE_DONE(parse_status || session->is_fatal_error);
1126.10.15 by Padraig O'Sullivan
Added calls to the parsing related dtrace probes.
1720
1 by brian
clean slate
1721
  /* That's it. */
1722
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
1723
  return parse_status || session->is_fatal_error;
1 by brian
clean slate
1724
}
1725
1726
/**
1727
  @} (end of group Runtime_Environment)
1728
*/
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1729
1730
} /* namespace drizzled */