17
17
/* A lexical scanner on a temporary buffer with a yacc interface */
21
21
#define DRIZZLE_LEX 1
23
#include "drizzled/sql_reserved_words.h"
23
#include <drizzled/sql_reserved_words.h>
25
#include "drizzled/configmake.h"
26
#include "drizzled/item/num.h"
27
#include "drizzled/error.h"
28
#include "drizzled/session.h"
29
#include "drizzled/sql_base.h"
30
#include "drizzled/lookup_symbol.h"
31
#include "drizzled/index_hint.h"
25
#include <drizzled/configmake.h>
26
#include <drizzled/item/num.h>
27
#include <drizzled/error.h>
28
#include <drizzled/session.h>
29
#include <drizzled/sql_base.h>
30
#include <drizzled/lookup_symbol.h>
31
#include <drizzled/index_hint.h>
32
#include <drizzled/select_result.h>
36
39
using namespace std;
38
41
/* Stay outside of the namespace because otherwise bison goes nuts */
39
int DRIZZLElex(void *arg, void *yysession);
42
int base_sql_lex(ParserType *arg, drizzled::Session *yysession);
44
static int lex_one_token(void *arg, void *yysession);
47
static int lex_one_token(ParserType *arg, drizzled::Session *yysession);
47
50
save order by and tables in own lists.
225
228
lex->session= lex->unit.session= session;
227
lex->context_stack.empty();
230
lex->context_stack.clear();
228
231
lex->unit.init_query();
229
232
lex->unit.init_select();
230
233
/* 'parent_lex' is used in init_query() so it must be before it. */
231
234
lex->select_lex.parent_lex= lex;
232
235
lex->select_lex.init_query();
233
lex->value_list.empty();
234
lex->update_list.empty();
235
lex->auxiliary_table_list.empty();
236
lex->value_list.clear();
237
lex->update_list.clear();
238
lex->auxiliary_table_list.clear();
236
239
lex->unit.next= lex->unit.master=
237
240
lex->unit.link_next= lex->unit.return_to= 0;
238
241
lex->unit.prev= lex->unit.link_prev= 0;
244
247
lex->select_lex.link_prev= (Select_Lex_Node**)&(lex->all_selects_list);
245
248
lex->select_lex.options= 0;
246
249
lex->select_lex.init_order();
247
lex->select_lex.group_list.empty();
250
lex->select_lex.group_list.clear();
248
251
lex->describe= 0;
249
252
lex->derived_tables= 0;
250
253
lex->lock_option= TL_READ;
253
256
lex->select_lex.select_number= 1;
255
258
lex->select_lex.in_sum_expr=0;
256
lex->select_lex.group_list.empty();
257
lex->select_lex.order_list.empty();
259
lex->select_lex.group_list.clear();
260
lex->select_lex.order_list.clear();
258
261
lex->sql_command= SQLCOM_END;
259
262
lex->duplicates= DUP_ERROR;
386
388
static char *get_text(Lex_input_stream *lip, int pre_skip, int post_skip)
388
register unsigned char c,sep;
389
391
bool found_escape= false;
390
392
const CHARSET_INFO * const cs= lip->m_session->charset();
601
603
} /* namespace drizzled */
603
DRIZZLElex remember the following states from the following DRIZZLElex()
605
base_sql_lex remember the following states from the following sql_baselex()
605
607
- MY_LEX_EOQ Found end of query
606
608
- MY_LEX_OPERATOR_OR_IDENT Last state was an ident, text or number
607
609
(which can't be followed by a signed number)
609
int DRIZZLElex(void *arg, void *yysession)
611
int base_sql_lex(union ParserType *yylval, drizzled::Session *session)
611
drizzled::Session *session= (drizzled::Session *)yysession;
612
613
drizzled::Lex_input_stream *lip= session->m_lip;
613
YYSTYPE *yylval=(YYSTYPE*) arg;
616
616
if (lip->lookahead_token != END_OF_INPUT)
637
637
to transform the grammar into a LALR(1) grammar,
638
638
which sql_yacc.yy can process.
640
token= drizzled::lex_one_token(arg, yysession);
640
token= drizzled::lex_one_token(yylval, session);
641
641
if (token == ROLLUP_SYM)
643
643
return WITH_ROLLUP_SYM;
662
662
namespace drizzled
665
int lex_one_token(void *arg, void *yysession)
665
int lex_one_token(ParserType *yylval, drizzled::Session *session)
667
register unsigned char c= 0; /* Just set to shutup GCC */
667
unsigned char c= 0; /* Just set to shutup GCC */
668
668
bool comment_closed;
669
669
int tokval, result_state;
670
670
unsigned int length;
671
671
enum my_lex_states state;
672
Session *session= (Session *)yysession;
673
672
Lex_input_stream *lip= session->m_lip;
674
673
LEX *lex= session->lex;
675
YYSTYPE *yylval=(YYSTYPE*) arg;
676
674
const CHARSET_INFO * const cs= session->charset();
677
675
unsigned char *state_map= cs->state_map;
678
676
unsigned char *ident_map= cs->ident_map;
1344
1342
void Select_Lex::init_query()
1346
1344
Select_Lex_Node::init_query();
1348
top_join_list.empty();
1346
top_join_list.clear();
1349
1347
join_list= &top_join_list;
1350
1348
embedding= leaf_tables= 0;
1353
1351
having= where= 0;
1354
1352
olap= UNSPECIFIED_OLAP_TYPE;