1
/* Copyright (C) 2000-2006 MySQL AB
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.
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.
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
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
17
/* A lexical scanner on a temporary buffer with a yacc interface */
21
#include "drizzled/configmake.h"
22
#include "drizzled/item/num.h"
23
#include "drizzled/error.h"
24
#include "drizzled/session.h"
25
#include "drizzled/sql_base.h"
26
#include "drizzled/lookup_symbol.h"
27
#include "drizzled/index_hint.h"
33
static int lex_one_token(void *arg, void *yysession);
34
int DRIZZLElex(void *arg, void *yysession);
37
save order by and tables in own lists.
39
static bool add_to_list(Session *session, SQL_LIST &list, Item *item, bool asc)
42
if (!(order = (order_st *) session->alloc(sizeof(order_st))))
44
order->item_ptr= item;
45
order->item= &order->item_ptr;
49
order->counter_used= 0;
50
list.link_in_list((unsigned char*) order,(unsigned char**) &order->next);
55
LEX_STRING constant for null-string to be used in parser and other places.
57
const LEX_STRING null_lex_str= {NULL, 0};
59
Lex_input_stream::Lex_input_stream(Session *session,
66
lookahead_token(END_OF_INPUT),
67
lookahead_yylval(NULL),
71
m_end_of_query(buffer + length),
72
m_tok_start_prev(NULL),
76
m_cpp_tok_start(NULL),
77
m_cpp_tok_start_prev(NULL),
80
m_cpp_utf8_processed_ptr(NULL),
81
next_state(MY_LEX_START),
82
found_semicolon(NULL),
84
in_comment(NO_COMMENT)
86
m_cpp_buf= (char*) session->alloc(length + 1);
90
Lex_input_stream::~Lex_input_stream()
94
The operation is called from the parser in order to
95
1) designate the intention to have utf8 body;
96
1) Indicate to the lexer that we will need a utf8 representation of this
98
2) Determine the beginning of the body.
100
@param session Thread context.
101
@param begin_ptr Pointer to the start of the body in the pre-processed
104
void Lex_input_stream::body_utf8_start(Session *session, const char *begin_ptr)
107
assert(m_cpp_buf <= begin_ptr && begin_ptr <= m_cpp_buf + m_buf_length);
109
uint32_t body_utf8_length=
110
(m_buf_length / default_charset_info->mbminlen) *
111
my_charset_utf8_bin.mbmaxlen;
113
m_body_utf8= (char *) session->alloc(body_utf8_length + 1);
114
m_body_utf8_ptr= m_body_utf8;
117
m_cpp_utf8_processed_ptr= begin_ptr;
121
@brief The operation appends unprocessed part of pre-processed buffer till
122
the given pointer (ptr) and sets m_cpp_utf8_processed_ptr to end_ptr.
124
The idea is that some tokens in the pre-processed buffer (like character
125
set introducers) should be skipped.
128
CPP buffer: SELECT 'str1', _latin1 'str2';
129
m_cpp_utf8_processed_ptr -- points at the "SELECT ...";
130
In order to skip "_latin1", the following call should be made:
131
body_utf8_append(<pointer to "_latin1 ...">, <pointer to " 'str2'...">)
133
@param ptr Pointer in the pre-processed buffer, which specifies the
134
end of the chunk, which should be appended to the utf8
136
@param end_ptr Pointer in the pre-processed buffer, to which
137
m_cpp_utf8_processed_ptr will be set in the end of the
140
void Lex_input_stream::body_utf8_append(const char *ptr,
143
assert(m_cpp_buf <= ptr && ptr <= m_cpp_buf + m_buf_length);
144
assert(m_cpp_buf <= end_ptr && end_ptr <= m_cpp_buf + m_buf_length);
149
if (m_cpp_utf8_processed_ptr >= ptr)
152
int bytes_to_copy= ptr - m_cpp_utf8_processed_ptr;
154
memcpy(m_body_utf8_ptr, m_cpp_utf8_processed_ptr, bytes_to_copy);
155
m_body_utf8_ptr += bytes_to_copy;
158
m_cpp_utf8_processed_ptr= end_ptr;
162
The operation appends unprocessed part of the pre-processed buffer till
163
the given pointer (ptr) and sets m_cpp_utf8_processed_ptr to ptr.
165
@param ptr Pointer in the pre-processed buffer, which specifies the end
166
of the chunk, which should be appended to the utf8 body.
168
void Lex_input_stream::body_utf8_append(const char *ptr)
170
body_utf8_append(ptr, ptr);
174
The operation converts the specified text literal to the utf8 and appends
175
the result to the utf8-body.
177
@param session Thread context.
178
@param txt Text literal.
179
@param txt_cs Character set of the text literal.
180
@param end_ptr Pointer in the pre-processed buffer, to which
181
m_cpp_utf8_processed_ptr will be set in the end of the
184
void Lex_input_stream::body_utf8_append_literal(const LEX_STRING *txt,
187
if (!m_cpp_utf8_processed_ptr)
190
/* NOTE: utf_txt.length is in bytes, not in symbols. */
192
memcpy(m_body_utf8_ptr, txt->str, txt->length);
193
m_body_utf8_ptr += txt->length;
196
m_cpp_utf8_processed_ptr= end_ptr;
200
This is called before every query that is to be parsed.
201
Because of this, it's critical to not do too much things here.
202
(We already do too much here)
204
void lex_start(Session *session)
206
LEX *lex= session->lex;
208
lex->session= lex->unit.session= session;
210
lex->context_stack.empty();
211
lex->unit.init_query();
212
lex->unit.init_select();
213
/* 'parent_lex' is used in init_query() so it must be before it. */
214
lex->select_lex.parent_lex= lex;
215
lex->select_lex.init_query();
216
lex->value_list.empty();
217
lex->update_list.empty();
218
lex->auxiliary_table_list.empty();
219
lex->unit.next= lex->unit.master=
220
lex->unit.link_next= lex->unit.return_to= 0;
221
lex->unit.prev= lex->unit.link_prev= 0;
222
lex->unit.slave= lex->unit.global_parameters= lex->current_select=
223
lex->all_selects_list= &lex->select_lex;
224
lex->select_lex.master= &lex->unit;
225
lex->select_lex.prev= &lex->unit.slave;
226
lex->select_lex.link_next= lex->select_lex.slave= lex->select_lex.next= 0;
227
lex->select_lex.link_prev= (Select_Lex_Node**)&(lex->all_selects_list);
228
lex->select_lex.options= 0;
229
lex->select_lex.init_order();
230
lex->select_lex.group_list.empty();
232
lex->derived_tables= 0;
233
lex->lock_option= TL_READ;
234
lex->leaf_tables_insert= 0;
235
lex->select_lex.select_number= 1;
237
lex->select_lex.in_sum_expr=0;
238
lex->select_lex.group_list.empty();
239
lex->select_lex.order_list.empty();
240
lex->sql_command= SQLCOM_END;
241
lex->duplicates= DUP_ERROR;
243
lex->escape_used= false;
244
lex->query_tables= 0;
245
lex->reset_query_tables_list(false);
246
lex->expr_allows_subselect= true;
247
lex->use_only_table_context= false;
252
lex->allow_sum_func= 0;
253
lex->in_sum_func= NULL;
255
lex->is_lex_started= true;
256
lex->statement= NULL;
259
void lex_end(LEX *lex)
263
free(lex->yacc_yyss);
264
free(lex->yacc_yyvs);
274
delete lex->statement;
277
static int find_keyword(Lex_input_stream *lip, uint32_t len, bool function)
279
/* Plenty of memory for the largest lex symbol we have */
281
const char *tok= lip->get_tok_start();
283
for (;tok_pos<len && tok_pos<63;tok_pos++)
284
tok_upper[tok_pos]=my_toupper(system_charset_info, tok[tok_pos]);
285
tok_upper[tok_pos]=0;
287
const SYMBOL *symbol= lookup_symbol(tok_upper, len, function);
290
lip->yylval->symbol.symbol=symbol;
291
lip->yylval->symbol.str= (char*) tok;
292
lip->yylval->symbol.length=len;
300
bool is_lex_native_function(const LEX_STRING *name)
302
assert(name != NULL);
303
return (lookup_symbol(name->str, name->length, 1) != 0);
306
/* make a copy of token before ptr and set yytoklen */
307
static LEX_STRING get_token(Lex_input_stream *lip, uint32_t skip, uint32_t length)
310
lip->yyUnget(); // ptr points now after last token char
311
tmp.length=lip->yytoklen=length;
312
tmp.str= lip->m_session->strmake(lip->get_tok_start() + skip, tmp.length);
314
lip->m_cpp_text_start= lip->get_cpp_tok_start() + skip;
315
lip->m_cpp_text_end= lip->m_cpp_text_start + tmp.length;
322
There are no dangerous charsets in mysql for function
323
get_quoted_token yet. But it should be fixed in the
324
future to operate multichar strings (like ucs2)
326
static LEX_STRING get_quoted_token(Lex_input_stream *lip,
328
uint32_t length, char quote)
331
const char *from, *end;
333
lip->yyUnget(); // ptr points now after last token char
334
tmp.length= lip->yytoklen=length;
335
tmp.str=(char*) lip->m_session->alloc(tmp.length+1);
336
from= lip->get_tok_start() + skip;
340
lip->m_cpp_text_start= lip->get_cpp_tok_start() + skip;
341
lip->m_cpp_text_end= lip->m_cpp_text_start + length;
345
if ((*to++= *from++) == quote)
347
from++; // Skip double quotes
348
lip->m_cpp_text_start++;
351
*to= 0; // End null for safety
357
Return an unescaped text literal without quotes
358
Fix sometimes to do only one scan of the string
360
static char *get_text(Lex_input_stream *lip, int pre_skip, int post_skip)
362
register unsigned char c,sep;
363
bool found_escape= false;
364
const CHARSET_INFO * const cs= lip->m_session->charset();
367
sep= lip->yyGetLast(); // String should end with this
375
int l= my_ismbchar(cs, lip->get_ptr() -1, lip->get_end_of_query());
378
lip->skip_binary(l-1);
384
{ // Escaped character
392
if (c == lip->yyGet()) // Check if two separators in a row
394
found_escape= true; // duplicate. Remember for delete
400
/* Found end. Unescape and return string */
401
const char *str, *end;
404
str= lip->get_tok_start();
406
/* Extract the text from the token */
411
if (!(start= (char*) lip->m_session->alloc((uint32_t) (end-str)+1)))
412
return (char*) ""; // memory::SqlAlloc has set error flag
414
lip->m_cpp_text_start= lip->get_cpp_tok_start() + pre_skip;
415
lip->m_cpp_text_end= lip->get_cpp_ptr() - post_skip;
419
lip->yytoklen= (uint32_t) (end-str);
420
memcpy(start, str, lip->yytoklen);
421
start[lip->yytoklen]= 0;
427
for (to= start; str != end; str++)
431
int l= my_ismbchar(cs, str, end);
440
if (*str == '\\' && (str + 1) != end)
456
*to++= 0; // Ascii null
458
case 'Z': // ^Z must be escaped on Win32
463
*to++= '\\'; // remember prefix for wildcard
470
else if (*str == sep)
471
*to++= *str++; // Two ' or "
476
lip->yytoklen= (uint32_t) (to - start);
481
return 0; // unexpected end of query
486
** Calc type of integer; long integer, int64_t integer or real.
487
** Returns smallest type that match the string.
488
** When using uint64_t values the result is converted to a real
489
** because else they will be unexpected sign changes because all calculation
490
** is done with int64_t or double.
493
static const char *long_str= "2147483647";
494
static const uint32_t long_len= 10;
495
static const char *signed_long_str= "-2147483648";
496
static const char *int64_t_str= "9223372036854775807";
497
static const uint32_t int64_t_len= 19;
498
static const char *signed_int64_t_str= "-9223372036854775808";
499
static const uint32_t signed_int64_t_len= 19;
500
static const char *unsigned_int64_t_str= "18446744073709551615";
501
static const uint32_t unsigned_int64_t_len= 20;
503
static inline uint32_t int_token(const char *str,uint32_t length)
505
if (length < long_len) // quick normal case
509
if (*str == '+') // Remove sign and pre-zeros
513
else if (*str == '-')
518
while (*str == '0' && length)
522
if (length < long_len)
525
uint32_t smaller,bigger;
529
if (length == long_len)
531
cmp= signed_long_str+1;
532
smaller=NUM; // If <= signed_long_str
533
bigger=LONG_NUM; // If >= signed_long_str
535
else if (length < signed_int64_t_len)
537
else if (length > signed_int64_t_len)
541
cmp=signed_int64_t_str+1;
542
smaller=LONG_NUM; // If <= signed_int64_t_str
548
if (length == long_len)
554
else if (length < int64_t_len)
556
else if (length > int64_t_len)
558
if (length > unsigned_int64_t_len)
560
cmp=unsigned_int64_t_str;
561
smaller=ULONGLONG_NUM;
568
bigger= ULONGLONG_NUM;
571
while (*cmp && *cmp++ == *str++) ;
572
return ((unsigned char) str[-1] <= (unsigned char) cmp[-1]) ? smaller : bigger;
576
DRIZZLElex remember the following states from the following DRIZZLElex()
578
- MY_LEX_EOQ Found end of query
579
- MY_LEX_OPERATOR_OR_IDENT Last state was an ident, text or number
580
(which can't be followed by a signed number)
582
int DRIZZLElex(void *arg, void *yysession)
584
Session *session= (Session *)yysession;
585
Lex_input_stream *lip= session->m_lip;
586
YYSTYPE *yylval=(YYSTYPE*) arg;
589
if (lip->lookahead_token != END_OF_INPUT)
592
The next token was already parsed in advance,
595
token= lip->lookahead_token;
596
lip->lookahead_token= END_OF_INPUT;
597
*yylval= *(lip->lookahead_yylval);
598
lip->lookahead_yylval= NULL;
602
token= lex_one_token(arg, yysession);
607
Parsing 'WITH' 'ROLLUP' requires 2 look ups,
608
which makes the grammar LALR(2).
609
Replace by a single 'WITH_ROLLUP' or 'WITH_CUBE' token,
610
to transform the grammar into a LALR(1) grammar,
611
which sql_yacc.yy can process.
613
token= lex_one_token(arg, yysession);
614
if (token == ROLLUP_SYM)
616
return WITH_ROLLUP_SYM;
621
Save the token following 'WITH'
623
lip->lookahead_yylval= lip->yylval;
625
lip->lookahead_token= token;
635
int lex_one_token(void *arg, void *yysession)
637
register unsigned char c= 0; /* Just set to shutup GCC */
639
int tokval, result_state;
641
enum my_lex_states state;
642
Session *session= (Session *)yysession;
643
Lex_input_stream *lip= session->m_lip;
644
LEX *lex= session->lex;
645
YYSTYPE *yylval=(YYSTYPE*) arg;
646
const CHARSET_INFO * const cs= session->charset();
647
unsigned char *state_map= cs->state_map;
648
unsigned char *ident_map= cs->ident_map;
650
lip->yylval=yylval; // The global state
653
state=lip->next_state;
654
lip->next_state=MY_LEX_OPERATOR_OR_IDENT;
658
case MY_LEX_OPERATOR_OR_IDENT: // Next is operator or keyword
659
case MY_LEX_START: // Start of token
660
// Skip starting whitespace
661
while(state_map[c= lip->yyPeek()] == MY_LEX_SKIP)
669
/* Start of real token */
670
lip->restart_token();
672
state= (enum my_lex_states) state_map[c];
675
if (lip->yyGet() == 'N')
676
{ // Allow \N as shortcut for NULL
677
yylval->lex_str.str=(char*) "\\N";
678
yylval->lex_str.length=2;
681
case MY_LEX_CHAR: // Unknown or single char token
682
case MY_LEX_SKIP: // This should not happen
683
if (c == '-' && lip->yyPeek() == '-' &&
684
(my_isspace(cs,lip->yyPeekn(1)) ||
685
my_iscntrl(cs,lip->yyPeekn(1))))
687
state=MY_LEX_COMMENT;
692
lip->next_state= MY_LEX_START; // Allow signed numbers
698
This is a work around, to make the "remember_name" rule in
699
sql/sql_yacc.yy work properly.
700
The problem is that, when parsing "select expr1, expr2",
701
the code generated by bison executes the *pre* action
702
remember_name (see select_item) *before* actually parsing the
703
first token of expr2.
705
lip->restart_token();
710
case MY_LEX_IDENT_OR_HEX:
711
if (lip->yyPeek() == '\'')
712
{ // Found x'hex-number'
713
state= MY_LEX_HEX_NUMBER;
716
case MY_LEX_IDENT_OR_BIN:
717
if (lip->yyPeek() == '\'')
718
{ // Found b'bin-number'
719
state= MY_LEX_BIN_NUMBER;
726
result_state= IDENT_QUOTED;
727
if (my_mbcharlen(cs, lip->yyGetLast()) > 1)
729
int l = my_ismbchar(cs,
731
lip->get_end_of_query());
736
lip->skip_binary(l - 1);
738
while (ident_map[c=lip->yyGet()])
740
if (my_mbcharlen(cs, c) > 1)
742
int l= my_ismbchar(cs, lip->get_ptr() -1, lip->get_end_of_query());
745
lip->skip_binary(l-1);
751
for (result_state= c; ident_map[c= lip->yyGet()]; result_state|= c) {};
752
/* If there were non-ASCII characters, mark that we must convert */
753
result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
755
length= lip->yyLength();
756
start= lip->get_ptr();
757
if (lip->ignore_space)
760
If we find a space then this can't be an identifier. We notice this
761
below by checking start != lex->ptr.
763
for (; state_map[c] == MY_LEX_SKIP ; c= lip->yyGet()) {};
765
if (start == lip->get_ptr() && c == '.' && ident_map[(uint8_t)lip->yyPeek()])
766
lip->next_state=MY_LEX_IDENT_SEP;
768
{ // '(' must follow directly if function
770
if ((tokval = find_keyword(lip, length, c == '(')))
772
lip->next_state= MY_LEX_START; // Allow signed numbers
773
return(tokval); // Was keyword
775
lip->yySkip(); // next state does a unget
777
yylval->lex_str=get_token(lip, 0, length);
779
lip->body_utf8_append(lip->m_cpp_text_start);
781
lip->body_utf8_append_literal(&yylval->lex_str, lip->m_cpp_text_end);
783
return(result_state); // IDENT or IDENT_QUOTED
785
case MY_LEX_IDENT_SEP: // Found ident and now '.'
786
yylval->lex_str.str= (char*) lip->get_ptr();
787
yylval->lex_str.length= 1;
788
c= lip->yyGet(); // should be '.'
789
lip->next_state= MY_LEX_IDENT_START;// Next is an ident (not a keyword)
790
if (!ident_map[(uint8_t)lip->yyPeek()]) // Probably ` or "
791
lip->next_state= MY_LEX_START;
794
case MY_LEX_NUMBER_IDENT: // number or ident which num-start
795
if (lip->yyGetLast() == '0')
800
while (my_isxdigit(cs,(c = lip->yyGet()))) ;
801
if ((lip->yyLength() >= 3) && !ident_map[c])
804
yylval->lex_str=get_token(lip, 2, lip->yyLength()-2);
808
state= MY_LEX_IDENT_START;
813
while ((c= lip->yyGet()) == '0' || c == '1') {};
814
if ((lip->yyLength() >= 3) && !ident_map[c])
817
yylval->lex_str= get_token(lip, 2, lip->yyLength()-2);
821
state= MY_LEX_IDENT_START;
827
while (my_isdigit(cs, (c = lip->yyGet()))) ;
829
{ // Can't be identifier
830
state=MY_LEX_INT_OR_REAL;
833
if (c == 'e' || c == 'E')
835
// The following test is written this way to allow numbers of type 1e1
836
if (my_isdigit(cs,lip->yyPeek()) ||
837
(c=(lip->yyGet())) == '+' || c == '-')
839
if (my_isdigit(cs,lip->yyPeek())) // Number must have digit after sign
842
while (my_isdigit(cs,lip->yyGet())) ;
843
yylval->lex_str=get_token(lip, 0, lip->yyLength());
850
case MY_LEX_IDENT_START: // We come here after '.'
854
result_state= IDENT_QUOTED;
855
while (ident_map[c=lip->yyGet()])
857
if (my_mbcharlen(cs, c) > 1)
859
int l= my_ismbchar(cs, lip->get_ptr() -1, lip->get_end_of_query());
862
lip->skip_binary(l-1);
868
for (result_state=0; ident_map[c= lip->yyGet()]; result_state|= c) {};
869
/* If there were non-ASCII characters, mark that we must convert */
870
result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
872
if (c == '.' && ident_map[(uint8_t)lip->yyPeek()])
873
lip->next_state=MY_LEX_IDENT_SEP;// Next is '.'
875
yylval->lex_str= get_token(lip, 0, lip->yyLength());
877
lip->body_utf8_append(lip->m_cpp_text_start);
879
lip->body_utf8_append_literal(&yylval->lex_str, lip->m_cpp_text_end);
881
return(result_state);
883
case MY_LEX_USER_VARIABLE_DELIMITER: // Found quote char
885
uint32_t double_quotes= 0;
886
char quote_char= c; // Used char
887
while ((c=lip->yyGet()))
890
if ((var_length= my_mbcharlen(cs, c)) == 1)
894
if (lip->yyPeek() != quote_char)
901
else if (var_length < 1)
903
lip->skip_binary(var_length-1);
906
yylval->lex_str=get_quoted_token(lip, 1, lip->yyLength() - double_quotes -1, quote_char);
908
yylval->lex_str=get_token(lip, 1, lip->yyLength() -1);
910
lip->yySkip(); // Skip end `
911
lip->next_state= MY_LEX_START;
912
lip->body_utf8_append(lip->m_cpp_text_start);
913
lip->body_utf8_append_literal(&yylval->lex_str, lip->m_cpp_text_end);
914
return(IDENT_QUOTED);
916
case MY_LEX_INT_OR_REAL: // Complete int or incomplete real
918
{ // Found complete integer number.
919
yylval->lex_str=get_token(lip, 0, lip->yyLength());
920
return int_token(yylval->lex_str.str,yylval->lex_str.length);
923
case MY_LEX_REAL: // Incomplete real number
924
while (my_isdigit(cs,c = lip->yyGet())) ;
926
if (c == 'e' || c == 'E')
929
if (c == '-' || c == '+')
930
c = lip->yyGet(); // Skip sign
931
if (!my_isdigit(cs,c))
932
{ // No digit after sign
936
while (my_isdigit(cs,lip->yyGet())) ;
937
yylval->lex_str=get_token(lip, 0, lip->yyLength());
940
yylval->lex_str=get_token(lip, 0, lip->yyLength());
943
case MY_LEX_HEX_NUMBER: // Found x'hexstring'
944
lip->yySkip(); // Accept opening '
945
while (my_isxdigit(cs, (c= lip->yyGet()))) ;
947
return(ABORT_SYM); // Illegal hex constant
948
lip->yySkip(); // Accept closing '
949
length= lip->yyLength(); // Length of hexnum+3
950
if ((length % 2) == 0)
951
return(ABORT_SYM); // odd number of hex digits
952
yylval->lex_str=get_token(lip,
954
length-3); // don't count x' and last '
957
case MY_LEX_BIN_NUMBER: // Found b'bin-string'
958
lip->yySkip(); // Accept opening '
959
while ((c= lip->yyGet()) == '0' || c == '1') {};
961
return(ABORT_SYM); // Illegal hex constant
962
lip->yySkip(); // Accept closing '
963
length= lip->yyLength(); // Length of bin-num + 3
964
yylval->lex_str= get_token(lip,
966
length-3); // don't count b' and last '
969
case MY_LEX_CMP_OP: // Incomplete comparison operator
970
if (state_map[(uint8_t)lip->yyPeek()] == MY_LEX_CMP_OP ||
971
state_map[(uint8_t)lip->yyPeek()] == MY_LEX_LONG_CMP_OP)
973
if ((tokval = find_keyword(lip, lip->yyLength() + 1, 0)))
975
lip->next_state= MY_LEX_START; // Allow signed numbers
978
state = MY_LEX_CHAR; // Something fishy found
981
case MY_LEX_LONG_CMP_OP: // Incomplete comparison operator
982
if (state_map[(uint8_t)lip->yyPeek()] == MY_LEX_CMP_OP ||
983
state_map[(uint8_t)lip->yyPeek()] == MY_LEX_LONG_CMP_OP)
986
if (state_map[(uint8_t)lip->yyPeek()] == MY_LEX_CMP_OP)
989
if ((tokval = find_keyword(lip, lip->yyLength() + 1, 0)))
991
lip->next_state= MY_LEX_START; // Found long op
994
state = MY_LEX_CHAR; // Something fishy found
998
if (c != lip->yyPeek())
1004
tokval = find_keyword(lip,2,0); // Is a bool operator
1005
lip->next_state= MY_LEX_START; // Allow signed numbers
1008
case MY_LEX_STRING_OR_DELIMITER:
1011
state= MY_LEX_USER_VARIABLE_DELIMITER;
1014
/* " used for strings */
1015
case MY_LEX_STRING: // Incomplete text string
1016
if (!(yylval->lex_str.str = get_text(lip, 1, 1)))
1018
state= MY_LEX_CHAR; // Read char by char
1021
yylval->lex_str.length=lip->yytoklen;
1023
lip->body_utf8_append(lip->m_cpp_text_start);
1025
lip->body_utf8_append_literal(&yylval->lex_str, lip->m_cpp_text_end);
1027
lex->text_string_is_7bit= (lip->tok_bitmap & 0x80) ? 0 : 1;
1028
return(TEXT_STRING);
1030
case MY_LEX_COMMENT: // Comment
1031
lex->select_lex.options|= OPTION_FOUND_COMMENT;
1032
while ((c = lip->yyGet()) != '\n' && c) ;
1033
lip->yyUnget(); // Safety against eof
1034
state = MY_LEX_START; // Try again
1036
case MY_LEX_LONG_COMMENT: /* Long C comment? */
1037
if (lip->yyPeek() != '*')
1039
state=MY_LEX_CHAR; // Probable division
1042
lex->select_lex.options|= OPTION_FOUND_COMMENT;
1043
/* Reject '/' '*', since we might need to turn off the echo */
1046
if (lip->yyPeekn(2) == '!')
1048
lip->in_comment= DISCARD_COMMENT;
1049
/* Accept '/' '*' '!', but do not keep this marker. */
1050
lip->set_echo(false);
1056
The special comment format is very strict:
1057
'/' '*' '!', followed by digits ended by a non-digit.
1058
There must be at least 5 digits for it to count
1060
const int MAX_VERSION_SIZE= 16;
1061
char version_str[MAX_VERSION_SIZE];
1066
version_str[pos]= lip->yyPeekn(pos);
1068
} while ((pos < MAX_VERSION_SIZE-1) && isdigit(version_str[pos-1]));
1069
version_str[pos]= 0;
1071
/* To keep some semblance of compatibility, we impose a 5 digit floor */
1075
version=strtoll(version_str, NULL, 10);
1077
/* Accept 'M' 'm' 'm' 'd' 'd' */
1078
lip->yySkipn(pos-1);
1080
if (version <= DRIZZLE_VERSION_ID)
1082
/* Expand the content of the special comment as real code */
1083
lip->set_echo(true);
1091
lip->set_echo(true);
1097
lip->in_comment= PRESERVE_COMMENT;
1098
lip->yySkip(); // Accept /
1099
lip->yySkip(); // Accept *
1103
- regular '/' '*' comments,
1104
- special comments '/' '*' '!' for a future version,
1105
by scanning until we find a closing '*' '/' marker.
1106
Note: There is no such thing as nesting comments,
1107
the first '*' '/' sequence seen will mark the end.
1109
comment_closed= false;
1110
while (! lip->eof())
1115
if (lip->yyPeek() == '/')
1118
comment_closed= true;
1119
state = MY_LEX_START;
1126
/* Unbalanced comments with a missing '*' '/' are a syntax error */
1127
if (! comment_closed)
1129
state = MY_LEX_START; // Try again
1130
lip->in_comment= NO_COMMENT;
1131
lip->set_echo(true);
1133
case MY_LEX_END_LONG_COMMENT:
1134
if ((lip->in_comment != NO_COMMENT) && lip->yyPeek() == '/')
1136
/* Reject '*' '/' */
1138
/* Accept '*' '/', with the proper echo */
1139
lip->set_echo(lip->in_comment == PRESERVE_COMMENT);
1141
/* And start recording the tokens again */
1142
lip->set_echo(true);
1143
lip->in_comment=NO_COMMENT;
1147
state=MY_LEX_CHAR; // Return '*'
1149
case MY_LEX_SET_VAR: // Check if ':='
1150
if (lip->yyPeek() != '=')
1152
state=MY_LEX_CHAR; // Return ':'
1157
case MY_LEX_SEMICOLON: // optional line terminator
1160
state= MY_LEX_CHAR; // Return ';'
1163
lip->next_state=MY_LEX_END; // Mark for next loop
1164
return(END_OF_INPUT);
1168
lip->yyUnget(); // Reject the last '\0'
1169
lip->set_echo(false);
1171
lip->set_echo(true);
1172
/* Unbalanced comments with a missing '*' '/' are a syntax error */
1173
if (lip->in_comment != NO_COMMENT)
1175
lip->next_state=MY_LEX_END; // Mark for next loop
1176
return(END_OF_INPUT);
1181
lip->next_state=MY_LEX_END;
1182
return false; // We found end of input last time
1184
/* Actually real shouldn't start with . but allow them anyhow */
1185
case MY_LEX_REAL_OR_POINT:
1186
if (my_isdigit(cs,lip->yyPeek()))
1187
state= MY_LEX_REAL; // Real
1190
state= MY_LEX_IDENT_SEP; // return '.'
1191
lip->yyUnget(); // Put back '.'
1194
case MY_LEX_USER_END: // end '@' of user@hostname
1195
switch (state_map[(uint8_t)lip->yyPeek()]) {
1197
case MY_LEX_USER_VARIABLE_DELIMITER:
1198
case MY_LEX_STRING_OR_DELIMITER:
1200
case MY_LEX_USER_END:
1201
lip->next_state=MY_LEX_SYSTEM_VAR;
1204
lip->next_state=MY_LEX_HOSTNAME;
1207
yylval->lex_str.str=(char*) lip->get_ptr();
1208
yylval->lex_str.length=1;
1210
case MY_LEX_HOSTNAME: // end '@' of user@hostname
1211
for (c=lip->yyGet() ;
1212
my_isalnum(cs,c) || c == '.' || c == '_' || c == '$';
1214
yylval->lex_str=get_token(lip, 0, lip->yyLength());
1215
return(LEX_HOSTNAME);
1216
case MY_LEX_SYSTEM_VAR:
1217
yylval->lex_str.str=(char*) lip->get_ptr();
1218
yylval->lex_str.length=1;
1219
lip->yySkip(); // Skip '@'
1220
lip->next_state= (state_map[(uint8_t)lip->yyPeek()] ==
1221
MY_LEX_USER_VARIABLE_DELIMITER ?
1222
MY_LEX_OPERATOR_OR_IDENT :
1223
MY_LEX_IDENT_OR_KEYWORD);
1225
case MY_LEX_IDENT_OR_KEYWORD:
1227
We come here when we have found two '@' in a row.
1228
We should now be able to handle:
1229
[(global | local | session) .]variable_name
1232
for (result_state= 0; ident_map[c= lip->yyGet()]; result_state|= c) {};
1233
/* If there were non-ASCII characters, mark that we must convert */
1234
result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
1237
lip->next_state=MY_LEX_IDENT_SEP;
1238
length= lip->yyLength();
1240
return(ABORT_SYM); // Names must be nonempty.
1241
if ((tokval= find_keyword(lip, length,0)))
1243
lip->yyUnget(); // Put back 'c'
1244
return(tokval); // Was keyword
1246
yylval->lex_str=get_token(lip, 0, length);
1248
lip->body_utf8_append(lip->m_cpp_text_start);
1250
lip->body_utf8_append_literal(&yylval->lex_str, lip->m_cpp_text_end);
1252
return(result_state);
1257
void trim_whitespace(const CHARSET_INFO * const cs, LEX_STRING *str)
1261
This code assumes that there are no multi-bytes characters
1262
that can be considered white-space.
1264
while ((str->length > 0) && (my_isspace(cs, str->str[0])))
1272
Also, parsing backward is not safe with multi bytes characters
1274
while ((str->length > 0) && (my_isspace(cs, str->str[str->length-1])))
1281
Select_Lex structures initialisations
1283
void Select_Lex_Node::init_query()
1286
linkage= UNSPECIFIED_TYPE;
1287
no_error= no_table_names_allowed= 0;
1291
void Select_Lex_Node::init_select()
1295
void Select_Lex_Unit::init_query()
1297
Select_Lex_Node::init_query();
1298
linkage= GLOBAL_OPTIONS_TYPE;
1299
global_parameters= first_select();
1300
select_limit_cnt= HA_POS_ERROR;
1301
offset_limit_cnt= 0;
1303
prepared= optimized= executed= 0;
1311
found_rows_for_union= 0;
1314
void Select_Lex::init_query()
1316
Select_Lex_Node::init_query();
1318
top_join_list.empty();
1319
join_list= &top_join_list;
1320
embedding= leaf_tables= 0;
1324
olap= UNSPECIFIED_OLAP_TYPE;
1325
having_fix_field= 0;
1326
context.select_lex= this;
1329
Add the name resolution context of the current (sub)query to the
1330
stack of contexts for the whole query.
1332
push_context may return an error if there is no memory for a new
1333
element in the stack, however this method has no return value,
1334
thus push_context should be moved to a place where query
1335
initialization is checked for failure.
1337
parent_lex->push_context(&context);
1338
cond_count= between_count= with_wild= 0;
1340
ref_pointer_array= 0;
1341
select_n_where_fields= 0;
1342
select_n_having_items= 0;
1343
subquery_in_having= explicit_limit= 0;
1344
is_item_list_lookup= 0;
1345
parsing_place= NO_MATTER;
1346
exclude_from_table_unique_test= false;
1351
void Select_Lex::init_select()
1357
table_join_options= 0;
1358
in_sum_expr= with_wild= 0;
1361
interval_list.empty();
1362
inner_sum_func_list= 0;
1363
linkage= UNSPECIFIED_TYPE;
1364
order_list.elements= 0;
1365
order_list.first= 0;
1366
order_list.next= (unsigned char**) &order_list.first;
1367
/* Set limit and offset to default values */
1368
select_limit= 0; /* denotes the default limit = HA_POS_ERROR */
1369
offset_limit= 0; /* denotes the default offset = 0 */
1372
cur_pos_in_select_list= UNDEF_POS;
1373
non_agg_fields.empty();
1374
cond_value= having_value= Item::COND_UNDEF;
1375
inner_refs_list.empty();
1376
full_group_by_flag.reset();
1380
Select_Lex structures linking
1383
/* include on level down */
1384
void Select_Lex_Node::include_down(Select_Lex_Node *upper)
1386
if ((next= upper->slave))
1388
prev= &upper->slave;
1395
include on level down (but do not link)
1398
Select_Lex_Node::include_standalone()
1399
upper - reference on node underr which this node should be included
1400
ref - references on reference on this node
1402
void Select_Lex_Node::include_standalone(Select_Lex_Node *upper,
1403
Select_Lex_Node **ref)
1411
/* include neighbour (on same level) */
1412
void Select_Lex_Node::include_neighbour(Select_Lex_Node *before)
1414
if ((next= before->next))
1416
prev= &before->next;
1418
master= before->master;
1422
/* including in global Select_Lex list */
1423
void Select_Lex_Node::include_global(Select_Lex_Node **plink)
1425
if ((link_next= *plink))
1426
link_next->link_prev= &link_next;
1431
//excluding from global list (internal function)
1432
void Select_Lex_Node::fast_exclude()
1436
if ((*link_prev= link_next))
1437
link_next->link_prev= link_prev;
1439
// Remove slave structure
1440
for (; slave; slave= slave->next)
1441
slave->fast_exclude();
1446
excluding select_lex structure (except first (first select can't be
1447
deleted, because it is most upper select))
1449
void Select_Lex_Node::exclude()
1451
//exclude from global list
1453
//exclude from other structures
1457
We do not need following statements, because prev pointer of first
1458
list element point to master->slave
1459
if (master->slave == this)
1460
master->slave= next;
1466
Exclude level of current unit from tree of SELECTs
1469
Select_Lex_Unit::exclude_level()
1471
NOTE: units which belong to current will be brought up on level of
1474
void Select_Lex_Unit::exclude_level()
1476
Select_Lex_Unit *units= 0, **units_last= &units;
1477
for (Select_Lex *sl= first_select(); sl; sl= sl->next_select())
1479
// unlink current level from global SELECTs list
1480
if (sl->link_prev && (*sl->link_prev= sl->link_next))
1481
sl->link_next->link_prev= sl->link_prev;
1483
// bring up underlay levels
1484
Select_Lex_Unit **last= 0;
1485
for (Select_Lex_Unit *u= sl->first_inner_unit(); u; u= u->next_unit())
1488
last= (Select_Lex_Unit**)&(u->next);
1492
(*units_last)= sl->first_inner_unit();
1498
// include brought up levels in place of current
1500
(*units_last)= (Select_Lex_Unit*)next;
1502
next->prev= (Select_Lex_Node**)units_last;
1507
// exclude currect unit from list of nodes
1515
Exclude subtree of current unit from tree of SELECTs
1517
void Select_Lex_Unit::exclude_tree()
1519
for (Select_Lex *sl= first_select(); sl; sl= sl->next_select())
1521
// unlink current level from global SELECTs list
1522
if (sl->link_prev && (*sl->link_prev= sl->link_next))
1523
sl->link_next->link_prev= sl->link_prev;
1525
// unlink underlay levels
1526
for (Select_Lex_Unit *u= sl->first_inner_unit(); u; u= u->next_unit())
1531
// exclude currect unit from list of nodes
1538
* Mark all Select_Lex struct from this to 'last' as dependent
1540
* @param Pointer to last Select_Lex struct, before wich all
1541
* Select_Lex have to be marked as dependent
1542
* @note 'last' should be reachable from this Select_Lex_Node
1544
void Select_Lex::mark_as_dependent(Select_Lex *last)
1547
Mark all selects from resolved to 1 before select where was
1548
found table as depended (of select where was found table)
1550
for (Select_Lex *s= this;
1552
s= s->outer_select())
1554
if (!(s->uncacheable & UNCACHEABLE_DEPENDENT))
1556
// Select is dependent of outer select
1557
s->uncacheable= (s->uncacheable & ~UNCACHEABLE_UNITED) |
1558
UNCACHEABLE_DEPENDENT;
1559
Select_Lex_Unit *munit= s->master_unit();
1560
munit->uncacheable= (munit->uncacheable & ~UNCACHEABLE_UNITED) |
1561
UNCACHEABLE_DEPENDENT;
1562
for (Select_Lex *sl= munit->first_select(); sl ; sl= sl->next_select())
1565
!(sl->uncacheable & (UNCACHEABLE_DEPENDENT | UNCACHEABLE_UNITED)))
1566
sl->uncacheable|= UNCACHEABLE_UNITED;
1569
s->is_correlated= true;
1570
Item_subselect *subquery_predicate= s->master_unit()->item;
1571
if (subquery_predicate)
1572
subquery_predicate->is_correlated= true;
1576
bool Select_Lex_Node::set_braces(bool)
1579
bool Select_Lex_Node::inc_in_sum_expr()
1582
uint32_t Select_Lex_Node::get_in_sum_expr()
1585
TableList* Select_Lex_Node::get_table_list()
1588
List<Item>* Select_Lex_Node::get_item_list()
1591
TableList *Select_Lex_Node::add_table_to_list (Session *, Table_ident *, LEX_STRING *, uint32_t,
1592
thr_lock_type, List<Index_hint> *, LEX_STRING *)
1597
uint32_t Select_Lex_Node::get_table_join_options()
1603
prohibit using LIMIT clause
1605
bool Select_Lex::test_limit()
1607
if (select_limit != 0)
1609
my_error(ER_NOT_SUPPORTED_YET, MYF(0),
1610
"LIMIT & IN/ALL/ANY/SOME subquery");
1616
Select_Lex_Unit* Select_Lex_Unit::master_unit()
1621
Select_Lex* Select_Lex_Unit::outer_select()
1623
return (Select_Lex*) master;
1626
bool Select_Lex::add_order_to_list(Session *session, Item *item, bool asc)
1628
return add_to_list(session, order_list, item, asc);
1631
bool Select_Lex::add_item_to_list(Session *, Item *item)
1633
return(item_list.push_back(item));
1636
bool Select_Lex::add_group_to_list(Session *session, Item *item, bool asc)
1638
return add_to_list(session, group_list, item, asc);
1641
Select_Lex_Unit* Select_Lex::master_unit()
1643
return (Select_Lex_Unit*) master;
1646
Select_Lex* Select_Lex::outer_select()
1648
return (Select_Lex*) master->get_master();
1651
bool Select_Lex::set_braces(bool value)
1657
bool Select_Lex::inc_in_sum_expr()
1663
uint32_t Select_Lex::get_in_sum_expr()
1668
TableList* Select_Lex::get_table_list()
1670
return (TableList*) table_list.first;
1673
List<Item>* Select_Lex::get_item_list()
1678
uint32_t Select_Lex::get_table_join_options()
1680
return table_join_options;
1683
bool Select_Lex::setup_ref_array(Session *session, uint32_t order_group_num)
1685
if (ref_pointer_array)
1688
return (ref_pointer_array=
1689
(Item **)session->alloc(sizeof(Item*) * (n_child_sum_items +
1690
item_list.elements +
1691
select_n_having_items +
1692
select_n_where_fields +
1693
order_group_num)*5)) == 0;
1696
void Select_Lex_Unit::print(String *str, enum_query_type query_type)
1698
bool union_all= !union_distinct;
1699
for (Select_Lex *sl= first_select(); sl; sl= sl->next_select())
1701
if (sl != first_select())
1703
str->append(STRING_WITH_LEN(" union "));
1705
str->append(STRING_WITH_LEN("all "));
1706
else if (union_distinct == sl)
1711
sl->print(session, str, query_type);
1715
if (fake_select_lex == global_parameters)
1717
if (fake_select_lex->order_list.elements)
1719
str->append(STRING_WITH_LEN(" order by "));
1720
fake_select_lex->print_order(
1722
(order_st *) fake_select_lex->order_list.first,
1725
fake_select_lex->print_limit(session, str, query_type);
1729
void Select_Lex::print_order(String *str,
1731
enum_query_type query_type)
1733
for (; order; order= order->next)
1735
if (order->counter_used)
1738
uint32_t length= snprintf(buffer, 20, "%d", order->counter);
1739
str->append(buffer, length);
1742
(*order->item)->print(str, query_type);
1744
str->append(STRING_WITH_LEN(" desc"));
1750
void Select_Lex::print_limit(Session *, String *str,
1751
enum_query_type query_type)
1753
Select_Lex_Unit *unit= master_unit();
1754
Item_subselect *item= unit->item;
1756
if (item && unit->global_parameters == this)
1758
Item_subselect::subs_type subs_type= item->substype();
1759
if (subs_type == Item_subselect::EXISTS_SUBS ||
1760
subs_type == Item_subselect::IN_SUBS ||
1761
subs_type == Item_subselect::ALL_SUBS)
1763
assert(!item->fixed ||
1765
If not using materialization both:
1766
select_limit == 1, and there should be no offset_limit.
1768
(((subs_type == Item_subselect::IN_SUBS) &&
1769
((Item_in_subselect*)item)->exec_method ==
1770
Item_in_subselect::MATERIALIZATION) ?
1772
(select_limit->val_int() == 1L) &&
1773
offset_limit == 0));
1779
str->append(STRING_WITH_LEN(" limit "));
1782
offset_limit->print(str, query_type);
1785
select_limit->print(str, query_type);
1790
@brief Restore the LEX and Session in case of a parse error.
1792
This is a clean up call that is invoked by the Bison generated
1793
parser before returning an error from DRIZZLEparse. If your
1794
semantic actions manipulate with the global thread state (which
1795
is a very bad practice and should not normally be employed) and
1796
need a clean-up in case of error, and you can not use %destructor
1797
rule in the grammar file itself, this function should be used
1798
to implement the clean up.
1800
void LEX::cleanup_lex_after_parse_error(Session *)
1805
Initialize (or reset) Query_tables_list object.
1808
reset_query_tables_list()
1809
init true - we should perform full initialization of object with
1810
allocating needed memory
1811
false - object is already initialized so we should only reset
1812
its state so it can be used for parsing/processing
1816
This method initializes Query_tables_list so it can be used as part
1817
of LEX object for parsing/processing of statement. One can also use
1818
this method to reset state of already initialized Query_tables_list
1819
so it can be used for processing of new statement.
1821
void Query_tables_list::reset_query_tables_list(bool init)
1823
if (!init && query_tables)
1825
TableList *table= query_tables;
1828
if (query_tables_last == &table->next_global ||
1829
!(table= table->next_global))
1834
query_tables_last= &query_tables;
1835
query_tables_own_last= 0;
1839
Initialize LEX object.
1845
LEX object initialized with this constructor can be used as part of
1846
Session object for which one can safely call open_tables(), lock_tables()
1847
and close_thread_tables() functions. But it is not yet ready for
1848
statement parsing. On should use lex_start() function to prepare LEX
1852
:result(0), yacc_yyss(0), yacc_yyvs(0),
1853
sql_command(SQLCOM_END), option_type(OPT_DEFAULT), is_lex_started(0)
1855
reset_query_tables_list(true);
1860
Detect that we need only table structure of derived table/view
1863
only_view_structure()
1866
true yes, we need only structure
1867
false no, we need data
1869
bool LEX::only_view_structure()
1871
switch (sql_command) {
1872
case SQLCOM_SHOW_CREATE:
1873
case SQLCOM_SHOW_TABLES:
1874
case SQLCOM_SHOW_FIELDS:
1882
Should Items_ident be printed correctly
1885
need_correct_ident()
1888
true yes, we need only structure
1889
false no, we need data
1891
bool LEX::need_correct_ident()
1895
case SQLCOM_SHOW_CREATE:
1896
case SQLCOM_SHOW_TABLES:
1904
This method should be called only during parsing.
1905
It is aware of compound statements (stored routine bodies)
1906
and will initialize the destination with the default
1907
database of the stored routine, rather than the default
1908
database of the connection it is parsed in.
1909
E.g. if one has no current database selected, or current database
1910
set to 'bar' and then issues:
1912
CREATE PROCEDURE foo.p1() BEGIN SELECT * FROM t1 END//
1914
t1 is meant to refer to foo.t1, not to bar.t1.
1916
This method is needed to support this rule.
1918
@return true in case of error (parsing should be aborted, false in
1921
bool LEX::copy_db_to(char **p_db, size_t *p_db_length) const
1923
return session->copy_db_to(p_db, p_db_length);
1927
initialize limit counters
1930
Select_Lex_Unit::set_limit()
1931
values - Select_Lex with initial values for counters
1933
void Select_Lex_Unit::set_limit(Select_Lex *sl)
1935
ha_rows select_limit_val;
1938
val= sl->select_limit ? sl->select_limit->val_uint() : HA_POS_ERROR;
1939
select_limit_val= (ha_rows)val;
1941
Check for overflow : ha_rows can be smaller then uint64_t if
1944
if (val != (uint64_t)select_limit_val)
1945
select_limit_val= HA_POS_ERROR;
1946
offset_limit_cnt= (ha_rows)(sl->offset_limit ? sl->offset_limit->val_uint() :
1948
select_limit_cnt= select_limit_val + offset_limit_cnt;
1949
if (select_limit_cnt < select_limit_val)
1950
select_limit_cnt= HA_POS_ERROR; // no limit
1954
Unlink the first table from the global table list and the first table from
1955
outer select (lex->select_lex) local list
1958
unlink_first_table()
1959
link_to_local Set to 1 if caller should link this table to local list
1962
We assume that first tables in both lists is the same table or the local
1966
0 If 'query_tables' == 0
1968
In this case link_to_local is set.
1971
TableList *LEX::unlink_first_table(bool *link_to_local)
1974
if ((first= query_tables))
1977
Exclude from global table list
1979
if ((query_tables= query_tables->next_global))
1980
query_tables->prev_global= &query_tables;
1982
query_tables_last= &query_tables;
1983
first->next_global= 0;
1986
and from local list if it is not empty
1988
if ((*link_to_local= test(select_lex.table_list.first)))
1990
select_lex.context.table_list=
1991
select_lex.context.first_name_resolution_table= first->next_local;
1992
select_lex.table_list.first= (unsigned char*) (first->next_local);
1993
select_lex.table_list.elements--; //safety
1994
first->next_local= 0;
1996
Ensure that the global list has the same first table as the local
1999
first_lists_tables_same();
2006
Bring first local table of first most outer select to first place in global
2010
LEX::first_lists_tables_same()
2013
In many cases (for example, usual INSERT/DELETE/...) the first table of
2014
main Select_Lex have special meaning => check that it is the first table
2015
in global list and re-link to be first in the global list if it is
2016
necessary. We need such re-linking only for queries with sub-queries in
2017
the select list, as only in this case tables of sub-queries will go to
2018
the global list first.
2020
void LEX::first_lists_tables_same()
2022
TableList *first_table= (TableList*) select_lex.table_list.first;
2023
if (query_tables != first_table && first_table != 0)
2026
if (query_tables_last == &first_table->next_global)
2027
query_tables_last= first_table->prev_global;
2029
if ((next= *first_table->prev_global= first_table->next_global))
2030
next->prev_global= first_table->prev_global;
2031
/* include in new place */
2032
first_table->next_global= query_tables;
2034
We are sure that query_tables is not 0, because first_table was not
2035
first table in the global list => we can use
2036
query_tables->prev_global without check of query_tables
2038
query_tables->prev_global= &first_table->next_global;
2039
first_table->prev_global= &query_tables;
2040
query_tables= first_table;
2045
Link table back that was unlinked with unlink_first_table()
2048
link_first_table_back()
2049
link_to_local do we need link this table to local
2054
void LEX::link_first_table_back(TableList *first, bool link_to_local)
2058
if ((first->next_global= query_tables))
2059
query_tables->prev_global= &first->next_global;
2061
query_tables_last= &first->next_global;
2062
query_tables= first;
2066
first->next_local= (TableList*) select_lex.table_list.first;
2067
select_lex.context.table_list= first;
2068
select_lex.table_list.first= (unsigned char*) first;
2069
select_lex.table_list.elements++; //safety
2075
cleanup lex for case when we open table by table for processing
2078
LEX::cleanup_after_one_table_open()
2081
This method is mostly responsible for cleaning up of selects lists and
2082
derived tables state. To rollback changes in Query_tables_list one has
2083
to call Query_tables_list::reset_query_tables_list(false).
2085
void LEX::cleanup_after_one_table_open()
2088
session->lex->derived_tables & additional units may be set if we open
2089
a view. It is necessary to clear session->lex->derived_tables flag
2090
to prevent processing of derived tables during next openTablesLock
2091
if next table is a real table and cleanup & remove underlying units
2092
NOTE: all units will be connected to session->lex->select_lex, because we
2093
have not UNION on most upper level.
2095
if (all_selects_list != &select_lex)
2098
/* cleunup underlying units (units of VIEW) */
2099
for (Select_Lex_Unit *un= select_lex.first_inner_unit();
2101
un= un->next_unit())
2103
/* reduce all selects list to default state */
2104
all_selects_list= &select_lex;
2105
/* remove underlying units (units of VIEW) subtree */
2106
select_lex.cut_subtree();
2111
There are Select_Lex::add_table_to_list &
2112
Select_Lex::set_lock_for_tables are in sql_parse.cc
2114
Select_Lex::print is in sql_select.cc
2116
Select_Lex_Unit::prepare, Select_Lex_Unit::exec,
2117
Select_Lex_Unit::cleanup, Select_Lex_Unit::reinit_exec_mechanism,
2118
Select_Lex_Unit::change_result
2123
Sets the kind of hints to be added by the calls to add_index_hint().
2126
set_index_hint_type()
2127
type_arg The kind of hints to be added from now on.
2128
clause The clause to use for hints to be added from now on.
2131
Used in filling up the tagged hints list.
2132
This list is filled by first setting the kind of the hint as a
2133
context variable and then adding hints of the current kind.
2134
Then the context variable index_hint_type can be reset to the
2137
void Select_Lex::set_index_hint_type(enum index_hint_type type_arg, index_clause_map clause)
2139
current_index_hint_type= type_arg;
2140
current_index_hint_clause= clause;
2144
Makes an array to store index usage hints (ADD/FORCE/IGNORE INDEX).
2148
session current thread.
2150
void Select_Lex::alloc_index_hints (Session *session)
2152
index_hints= new (session->mem_root) List<Index_hint>();
2156
adds an element to the array storing index usage hints
2157
(ADD/FORCE/IGNORE INDEX).
2161
session current thread.
2162
str name of the index.
2163
length number of characters in str.
2166
0 on success, non-zero otherwise
2168
bool Select_Lex::add_index_hint (Session *session, char *str, uint32_t length)
2170
return index_hints->push_front (new (session->mem_root)
2171
Index_hint(current_index_hint_type,
2172
current_index_hint_clause,