17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
#ifndef DRIZZLED_SQL_LEX_H
21
#define DRIZZLED_SQL_LEX_H
24
23
@defgroup Semantic_Analysis Semantic Analysis
26
25
#include <drizzled/message/table.pb.h>
28
#include "drizzled/plugin/function.h"
29
#include "drizzled/name_resolution_context.h"
30
#include "drizzled/item/subselect.h"
31
#include "drizzled/table_list.h"
32
#include "drizzled/function/math/real.h"
33
#include "drizzled/alter_drop.h"
34
#include "drizzled/alter_column.h"
35
#include "drizzled/alter_info.h"
36
#include "drizzled/key_part_spec.h"
37
#include "drizzled/index_hint.h"
38
#include "drizzled/statement.h"
39
#include "drizzled/optimizer/explain_plan.h"
26
#include <drizzled/name_resolution_context.h>
27
#include <drizzled/table_list.h>
28
#include <drizzled/function/math/real.h>
29
#include <drizzled/key_part_spec.h>
30
#include <drizzled/index_hint.h>
31
#include <drizzled/optimizer/explain_plan.h>
48
class select_result_interceptor;
50
/* YACC and LEX Definitions */
52
/* These may not be declared yet */
58
} /* namespace drizzled */
61
37
The following hack is needed because mysql_yacc.cc does not define
62
38
YYSTYPE before including this file
72
48
# if defined(DRIZZLE_LEX)
73
49
# include <drizzled/foreign_key.h>
74
50
# include <drizzled/lex_symbol.h>
51
# include <drizzled/comp_creator.h>
75
52
# include <drizzled/sql_yacc.h>
76
53
# define LEX_YYSTYPE YYSTYPE *
260
234
return memory::sql_alloc(size);
262
236
static void *operator new(size_t size, memory::Root *mem_root)
263
{ return (void*) mem_root->alloc_root((uint32_t) size); }
264
static void operator delete(void *, size_t)
237
{ return mem_root->alloc(size); }
238
static void operator delete(void*, size_t)
266
static void operator delete(void *, memory::Root *)
240
static void operator delete(void*, memory::Root*)
268
242
Select_Lex_Node(): linkage(UNSPECIFIED_TYPE) {}
269
243
virtual ~Select_Lex_Node() {}
383
353
inline void unclean() { cleaned= 0; }
384
354
void reinit_exec_mechanism();
386
void print(String *str, enum_query_type query_type);
356
void print(String *str);
388
358
bool add_fake_select_lex(Session *session);
389
359
void init_prepare_fake_select_lex(Session *session);
475
444
Item::cond_result having_value;
476
445
/* point on lex in which it was created, used in view subquery detection */
479
448
/* FROM clause - points to the beginning of the TableList::next_local list. */
480
449
SQL_LIST table_list;
481
450
SQL_LIST group_list; /* GROUP BY clause. */
493
462
by TableList::next_leaf, so leaf_tables points to the left-most leaf.
495
464
TableList *leaf_tables;
496
enum drizzled::optimizer::select_type type; /* type of select for EXPLAIN */
465
drizzled::optimizer::select_type type; /* type of select for EXPLAIN */
498
467
SQL_LIST order_list; /* ORDER clause */
499
468
SQL_LIST *gorder_list;
609
578
bool inc_in_sum_expr();
610
579
uint32_t get_in_sum_expr();
612
bool add_item_to_list(Session *session, Item *item);
613
bool add_group_to_list(Session *session, Item *item, bool asc);
614
bool add_order_to_list(Session *session, Item *item, bool asc);
581
void add_item_to_list(Session *session, Item *item);
582
void add_group_to_list(Session *session, Item *item, bool asc);
583
void add_order_to_list(Session *session, Item *item, bool asc);
615
584
TableList* add_table_to_list(Session *session,
616
585
Table_ident *table,
617
586
LEX_STRING *alias,
620
589
List<Index_hint> *hints= 0,
621
590
LEX_STRING *option= 0);
622
591
TableList* get_table_list();
623
bool init_nested_join(Session *session);
592
void init_nested_join(Session&);
624
593
TableList *end_nested_join(Session *session);
625
594
TableList *nest_last_join(Session *session);
626
595
void add_joined_table(TableList *table);
654
bool setup_ref_array(Session *session, uint32_t order_group_num);
655
void print(Session *session, String *str, enum_query_type query_type);
656
static void print_order(String *str,
658
enum_query_type query_type);
659
void print_limit(Session *session, String *str, enum_query_type query_type);
623
void setup_ref_array(Session *session, uint32_t order_group_num);
624
void print(Session *session, String *str);
625
static void print_order(String *str, Order *order);
627
void print_limit(Session *session, String *str);
660
628
void fix_prepare_information(Session *session, Item **conds, Item **having_conds);
662
630
Destroy the used execution plan (JOIN) of this subtree (this
670
638
void cleanup_all_joins(bool full);
672
void set_index_hint_type(enum index_hint_type type, index_clause_map clause);
640
void set_index_hint_type(index_hint_type type, index_clause_map clause);
675
643
Add a index hint to the tagged list of hints. The type and clause of the
676
644
hint will be the current ones (set by set_index_hint())
678
bool add_index_hint (Session *session, char *str, uint32_t length);
646
void add_index_hint(Session *session, char *str, uint32_t length);
680
648
/* make a list to hold index hints */
681
649
void alloc_index_hints (Session *session);
693
661
/* current index hint kind. used in filling up index_hints */
694
enum index_hint_type current_index_hint_type;
662
index_hint_type current_index_hint_type;
695
663
index_clause_map current_index_hint_clause;
696
664
/* a list of USE/FORCE/IGNORE INDEX */
697
665
List<Index_hint> *index_hints;
817
785
/* list of all Select_Lex */
818
786
Select_Lex *all_selects_list;
820
/* This is the "scale" for DECIMAL (S,P) notation */
788
/* This is the "scale" for DECIMAL (S,P) notation */
822
790
/* This is the decimal precision in DECIMAL(S,P) notation */
826
* This is used kind of like the "ident" member variable below, as
794
* This is used kind of like the "ident" member variable below, as
827
795
* a place to store certain names of identifiers. Unfortunately, it
828
796
* is used differently depending on the Command (SELECT on a derived
829
797
* table vs CREATE)
839
807
* or a named savepoint. It should probably be refactored out into
840
808
* the eventual Command class built for the Keycache and Savepoint
843
811
LEX_STRING ident;
845
813
unsigned char* yacc_yyss, *yacc_yyvs;
846
814
/* The owning Session of this LEX */
847
815
Session *session;
848
const CHARSET_INFO *charset;
816
const charset_info_st *charset;
849
817
bool text_string_is_7bit;
850
818
/* store original leaf_tables for INSERT SELECT and PS/SP */
851
819
TableList *leaf_tables_insert;
945
913
void cleanup_after_one_table_open();
947
bool push_context(Name_resolution_context *context)
915
void push_context(Name_resolution_context *context)
949
return context_stack.push_front(context);
917
context_stack.push_front(context);
952
920
void pop_context()
1039
1009
return _exists;
1043
1013
bool cacheable;
1044
1014
bool sum_expr_used;
1045
1015
message::Table *_create_table;
1016
message::AlterTable *_alter_table;
1046
1017
message::Table::Field *_create_field;
1050
1021
extern void lex_start(Session *session);
1051
extern void trim_whitespace(const CHARSET_INFO * const cs, LEX_STRING *str);
1052
extern bool is_lex_native_function(const LEX_STRING *name);
1054
bool check_for_sql_keyword(drizzled::st_lex_symbol const&);
1055
bool check_for_sql_keyword(drizzled::lex_string_t const&);
1058
1024
@} (End of group Semantic_Analysis)