13
13
along with this program; if not, write to the Free Software
14
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
18
18
#define DRIZZLE_LEX 1
20
#include "drizzled/item/num.h"
21
#include "drizzled/abort_exception.h"
22
#include <drizzled/my_hash.h>
20
#include <drizzled/item/num.h>
21
#include <drizzled/abort_exception.h>
23
22
#include <drizzled/error.h>
24
23
#include <drizzled/nested_join.h>
25
24
#include <drizzled/query_id.h>
26
#include "drizzled/transaction_services.h"
25
#include <drizzled/transaction_services.h>
27
26
#include <drizzled/sql_parse.h>
28
27
#include <drizzled/data_home.h>
29
28
#include <drizzled/sql_base.h>
30
29
#include <drizzled/show.h>
31
#include <drizzled/db.h>
32
30
#include <drizzled/function/time/unix_timestamp.h>
33
31
#include <drizzled/function/get_system_var.h>
34
32
#include <drizzled/item/cmpfunc.h>
41
39
#include <drizzled/plugin/client.h>
42
40
#include <drizzled/statement.h>
43
41
#include <drizzled/statement/alter_table.h>
44
#include "drizzled/probes.h"
45
#include "drizzled/global_charset_info.h"
47
#include "drizzled/plugin/logging.h"
48
#include "drizzled/plugin/query_rewrite.h"
49
#include "drizzled/plugin/query_cache.h"
50
#include "drizzled/plugin/authorization.h"
51
#include "drizzled/optimizer/explain_plan.h"
52
#include "drizzled/pthread_globals.h"
53
#include "drizzled/plugin/event_observer.h"
54
#include "drizzled/visibility.h"
42
#include <drizzled/probes.h>
43
#include <drizzled/global_charset_info.h>
44
#include <drizzled/plugin/logging.h>
45
#include <drizzled/plugin/query_rewrite.h>
46
#include <drizzled/plugin/query_cache.h>
47
#include <drizzled/plugin/authorization.h>
48
#include <drizzled/optimizer/explain_plan.h>
49
#include <drizzled/pthread_globals.h>
50
#include <drizzled/plugin/event_observer.h>
51
#include <drizzled/display.h>
52
#include <drizzled/visibility.h>
53
#include <drizzled/kill.h>
54
#include <drizzled/schema.h>
55
#include <drizzled/item/subselect.h>
56
#include <drizzled/diagnostics_area.h>
57
#include <drizzled/table_ident.h>
58
#include <drizzled/statistics_variables.h>
59
#include <drizzled/system_variables.h>
60
#include <drizzled/session/transactions.h>
56
62
#include <limits.h>
59
65
#include <algorithm>
60
66
#include <boost/date_time.hpp>
61
#include "drizzled/internal/my_sys.h"
67
#include <drizzled/internal/my_sys.h>
63
69
using namespace std;
65
extern int DRIZZLEparse(void *session); // from sql_yacc.cc
71
extern int base_sql_parse(drizzled::Session *session); // from sql_yacc.cc
71
bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize);
76
bool my_yyoverflow(short **a, ParserType **b, ulong *yystacksize);
72
77
static bool parse_sql(Session *session, Lex_input_stream *lip);
73
78
void parse(Session *session, const char *inBuf, uint32_t length);
177
183
1 request of thread shutdown, i. e. if command is
178
184
COM_QUIT/COM_SHUTDOWN
180
bool dispatch_command(enum enum_server_command command, Session *session,
186
bool dispatch_command(enum_server_command command, Session *session,
181
187
char* packet, uint32_t packet_length)
186
192
DRIZZLE_COMMAND_START(session->thread_id, command);
188
194
session->command= command;
189
session->lex->sql_command= SQLCOM_END; /* to avoid confusing VIEW detectors */
195
session->lex().sql_command= SQLCOM_END; /* to avoid confusing VIEW detectors */
190
196
session->set_time();
191
197
session->setQueryId(query_id.value());
245
252
/* We don't calculate statistics for this command */
246
session->main_da.disable_status(); // Don't send anything back
247
error=true; // End server
253
session->main_da().disable_status(); // Don't send anything back
254
error= true; // End server
258
if (packet_length != 4)
260
my_error(ER_NO_SUCH_THREAD, MYF(0), 0);
266
memcpy(&kill_id, packet, sizeof(uint32_t));
268
kill_id= ntohl(kill_id);
269
(void)drizzled::kill(*session->user(), kill_id, true);
249
274
case COM_SHUTDOWN:
251
276
session->status_var.com_other++;
252
277
session->my_eof();
253
278
session->close_thread_tables(); // Free before kill
270
295
/* If commit fails, we should be able to reset the OK status. */
271
session->main_da.can_overwrite_status= true;
296
session->main_da().can_overwrite_status= true;
272
297
TransactionServices &transaction_services= TransactionServices::singleton();
273
298
transaction_services.autocommitOrRollback(*session, session->is_error());
274
session->main_da.can_overwrite_status= false;
299
session->main_da().can_overwrite_status= false;
276
301
session->transaction.stmt.reset();
279
304
/* report error issued during command execution */
280
305
if (session->killed_errno())
282
if (! session->main_da.is_set())
307
if (! session->main_da().is_set())
283
308
session->send_kill_message();
285
310
if (session->getKilled() == Session::KILL_QUERY || session->getKilled() == Session::KILL_BAD_DATA)
291
316
/* Can not be true, but do not take chances in production. */
292
assert(! session->main_da.is_sent);
317
assert(! session->main_da().is_sent);
294
switch (session->main_da.status())
319
switch (session->main_da().status())
296
321
case Diagnostics_area::DA_ERROR:
297
322
/* The query failed, send error to log and abort bootstrap. */
298
session->getClient()->sendError(session->main_da.sql_errno(),
299
session->main_da.message());
323
session->getClient()->sendError(session->main_da().sql_errno(),
324
session->main_da().message());
302
327
case Diagnostics_area::DA_EOF:
386
411
session->make_lex_string(&db, "data_dictionary", sizeof("data_dictionary"), false);
387
412
session->make_lex_string(&table, schema_table_name, false);
389
if (! sel->add_table_to_list(session, new Table_ident(db, table),
390
NULL, table_options, TL_READ))
414
if (not sel->add_table_to_list(session, new Table_ident(db, table), NULL, table_options, TL_READ))
397
int prepare_new_schema_table(Session *session, LEX *lex,
421
int prepare_new_schema_table(Session *session, LEX& lex,
398
422
const string& schema_table_name)
400
424
Select_Lex *schema_select_lex= NULL;
402
Select_Lex *select_lex= lex->current_select;
426
Select_Lex *select_lex= lex.current_select;
403
427
assert(select_lex);
404
428
if (_schema_select(session, select_lex, schema_table_name))
466
491
assert(first_table == all_tables);
467
492
assert(first_table == all_tables && first_table != 0);
469
lex->first_lists_tables_same();
494
session->lex().first_lists_tables_same();
470
496
/* should be assigned after making first tables same */
471
all_tables= lex->query_tables;
497
all_tables= session->lex().query_tables;
472
499
/* set context for commands which do not use setup_tables */
474
context.resolve_in_table_list_only((TableList*)select_lex->
500
select_lex->context.resolve_in_table_list_only((TableList*)select_lex->table_list.first);
478
503
Reset warning count for each query that uses tables
481
506
variables, but for now this is probably good enough.
482
507
Don't reset warnings when executing a stored routine.
484
if (all_tables || ! lex->is_single_level_stmt())
509
if (all_tables || ! session->lex().is_single_level_stmt())
486
511
drizzle_reset_errors(session, 0);
555
580
session->send_explain_fields(result);
556
581
optimizer::ExplainPlan planner;
557
res= planner.explainUnion(session, &session->lex->unit, result);
582
res= planner.explainUnion(session, &session->lex().unit, result);
558
583
if (lex->describe & DESCRIBE_EXTENDED)
561
586
String str(buff,(uint32_t) sizeof(buff), system_charset_info);
563
session->lex->unit.print(&str, QT_ORDINARY);
588
session->lex().unit.print(&str);
564
589
str.append('\0');
565
590
push_warning(session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
566
591
ER_YES, str.ptr());
579
605
/* Init the Query Cache plugin */
580
plugin::QueryCache::prepareResultset(session);
606
plugin::QueryCache::prepareResultset(session);
581
607
res= handle_select(session, lex, result, 0);
582
608
/* Send the Resultset to the cache */
583
plugin::QueryCache::setResultset(session);
609
plugin::QueryCache::setResultset(session);
585
611
if (result != lex->result)
593
619
#define MY_YACC_INIT 1000 // Start with big alloc
594
620
#define MY_YACC_MAX 32000 // Because of 'short'
596
bool my_yyoverflow(short **yyss, YYSTYPE **yyvs, ulong *yystacksize)
622
bool my_yyoverflow(short **yyss, ParserType **yyvs, ulong *yystacksize)
598
LEX *lex= current_session->lex;
624
LEX *lex= ¤t_session->lex();
599
625
ulong old_info=0;
600
626
if ((uint32_t) *yystacksize >= MY_YACC_MAX)
758
784
void parse(Session *session, const char *inBuf, uint32_t length)
760
session->lex->start(session);
786
session->lex().start(session);
762
788
session->reset_for_next_command();
763
789
/* Check if the Query is Cached if and return true if yes
827
853
Item *default_value, Item *on_update_value,
828
854
LEX_STRING *comment,
830
List<String> *interval_list, const CHARSET_INFO * const cs)
856
List<String> *interval_list, const charset_info_st * const cs)
832
858
register CreateField *new_field;
833
LEX *lex= session->lex;
859
LEX *lex= &session->lex();
834
860
statement::AlterTable *statement= (statement::AlterTable *)lex->statement;
836
862
if (check_identifier_name(field_name, ER_TOO_LONG_IDENT))
898
if (!(new_field= new CreateField()) ||
899
new_field->init(session, field_name->str, type, length, decimals, type_modifier,
900
default_value, on_update_value, comment, change,
901
interval_list, cs, 0, column_format))
924
if (!(new_field= new CreateField())
925
|| new_field->init(session, field_name->str, type, length, decimals,
926
type_modifier, comment, change, interval_list,
927
cs, 0, column_format)
928
|| new_field->setDefaultValue(default_value, on_update_value))
904
931
statement->alter_info.create_list.push_back(new_field);
955
981
my_casedn_str(files_charset_info, table->db.str);
957
983
identifier::Schema schema_identifier(string(table->db.str));
958
if (not check_db_name(session, schema_identifier))
984
if (not schema::check(*session, schema_identifier))
961
987
my_error(ER_WRONG_DB_NAME, MYF(0), table->db.str);
1114
1139
join_list= ptr->getJoinList();
1115
1140
embedding= ptr->getEmbedding();
1116
1141
nested_join= ptr->getNestedJoin();
1117
if (nested_join->join_list.elements == 1)
1142
if (nested_join->join_list.size() == 1)
1119
TableList *embedded= nested_join->join_list.head();
1144
TableList *embedded= &nested_join->join_list.front();
1120
1145
join_list->pop();
1121
1146
embedded->setJoinList(join_list);
1122
1147
embedded->setEmbedding(embedding);
1123
1148
join_list->push_front(embedded);
1126
else if (nested_join->join_list.elements == 0)
1151
else if (nested_join->join_list.size() == 0)
1128
1153
join_list->pop();
1129
1154
ptr= NULL; // return value
1308
1333
fake_select_lex->include_standalone(this,
1309
1334
(Select_Lex_Node**)&fake_select_lex);
1310
1335
fake_select_lex->select_number= INT_MAX;
1311
fake_select_lex->parent_lex= session_arg->lex; /* Used in init_query. */
1336
fake_select_lex->parent_lex= &session_arg->lex(); /* Used in init_query. */
1312
1337
fake_select_lex->make_empty_select();
1313
1338
fake_select_lex->linkage= GLOBAL_OPTIONS_TYPE;
1314
1339
fake_select_lex->select_limit= 0;
1329
1354
global_parameters= fake_select_lex;
1330
1355
fake_select_lex->no_table_names_allowed= 1;
1331
session_arg->lex->current_select= fake_select_lex;
1356
session_arg->lex().current_select= fake_select_lex;
1333
session_arg->lex->pop_context();
1358
session_arg->lex().pop_context();
1354
1379
true if a memory allocation error occured
1358
push_new_name_resolution_context(Session *session,
1359
TableList *left_op, TableList *right_op)
1382
void push_new_name_resolution_context(Session& session, TableList& left_op, TableList& right_op)
1361
Name_resolution_context *on_context;
1362
if (!(on_context= new (session->mem_root) Name_resolution_context))
1384
Name_resolution_context *on_context= new (session.mem_root) Name_resolution_context;
1364
1385
on_context->init();
1365
on_context->first_name_resolution_table=
1366
left_op->first_leaf_for_name_resolution();
1367
on_context->last_name_resolution_table=
1368
right_op->last_leaf_for_name_resolution();
1369
return session->lex->push_context(on_context);
1386
on_context->first_name_resolution_table= left_op.first_leaf_for_name_resolution();
1387
on_context->last_name_resolution_table= right_op.last_leaf_for_name_resolution();
1388
session.lex().push_context(on_context);
1454
1473
1 error ; In this case the error messege is sent to the client
1457
bool check_simple_select(Session::pointer session)
1476
bool check_simple_select(Session* session)
1459
LEX *lex= session->lex;
1460
if (lex->current_select != &lex->select_lex)
1478
if (session->lex().current_select != &session->lex().select_lex)
1462
1480
char command[80];
1463
1481
Lex_input_stream *lip= session->m_lip;
1517
1535
bool update_precheck(Session *session, TableList *)
1519
1537
const char *msg= 0;
1520
LEX *lex= session->lex;
1521
Select_Lex *select_lex= &lex->select_lex;
1538
Select_Lex *select_lex= &session->lex().select_lex;
1523
if (session->lex->select_lex.item_list.elements != session->lex->value_list.elements)
1540
if (session->lex().select_lex.item_list.size() != session->lex().value_list.size())
1525
1542
my_message(ER_WRONG_VALUE_COUNT, ER(ER_WRONG_VALUE_COUNT), MYF(0));
1529
if (session->lex->select_lex.table_list.elements > 1)
1546
if (session->lex().select_lex.table_list.size() > 1)
1531
if (select_lex->order_list.elements)
1548
if (select_lex->order_list.size())
1532
1549
msg= "ORDER BY";
1533
1550
else if (select_lex->select_limit)
1557
1574
bool insert_precheck(Session *session, TableList *)
1559
LEX *lex= session->lex;
1562
1577
Check that we have modify privileges for the first table and
1563
1578
select privileges for the rest
1565
if (lex->update_list.elements != lex->value_list.elements)
1580
if (session->lex().update_list.size() != session->lex().value_list.size())
1567
1582
my_message(ER_WRONG_VALUE_COUNT, ER(ER_WRONG_VALUE_COUNT), MYF(0));
1624
1639
bool check_string_char_length(LEX_STRING *str, const char *err_msg,
1625
uint32_t max_char_length, const CHARSET_INFO * const cs,
1640
uint32_t max_char_length, const charset_info_st * const cs,
1628
1643
int well_formed_error;
1647
1662
so they should be prohibited until such support is done.
1648
1663
This is why we use the 3-byte utf8 to check well-formedness here.
1650
const CHARSET_INFO * const cs= &my_charset_utf8mb4_general_ci;
1665
const charset_info_st * const cs= &my_charset_utf8mb4_general_ci;
1652
1667
int well_formed_error;
1653
1668
uint32_t res= cs->cset->well_formed_len(cs, str->str, str->str + str->length,