24
24
#include "drizzled/session.h"
25
25
#include "drizzled/field/varstring.h"
26
26
#include "drizzled/item/null.h"
27
#include <drizzled/enum_nested_loop_state.h>
28
#include "drizzled/join_cache.h"
29
#include "drizzled/join_table.h"
28
32
class select_result;
58
63
bool null_rejecting;
60
!NULL - This KEYUSE was created from an equality that was wrapped into
65
!NULL - This KeyUse was created from an equality that was wrapped into
61
66
an Item_func_trig_cond. This means the equality (and validity of
62
this KEYUSE element) can be turned on and off. The on/off state
67
this KeyUse element) can be turned on and off. The on/off state
63
68
is indicted by the pointed value:
64
69
*cond_guard == true <=> equality condition is on
65
70
*cond_guard == false <=> equality condition is off
74
79
uint32_t sj_pred_no;
79
typedef struct st_table_ref
82
uint32_t key_parts; /**< num of key parts */
83
uint32_t key_length; /**< length of key_buff */
84
int32_t key; /**< key no (index) */
85
unsigned char *key_buff; /**< value to look for with key */
86
unsigned char *key_buff2; /**< key_buff+key_length */
87
StoredKey **key_copy; /**< No idea what this does... */
88
Item **items; /**< val()'s for each keypart */
90
Array of pointers to trigger variables. Some/all of the pointers may be
91
NULL. The ref access can be used iff
93
for each used key part i, (!cond_guards[i] || *cond_guards[i])
95
This array is used by subquery code. The subquery code may inject
96
triggered conditions, i.e. conditions that can be 'switched off'. A ref
97
access created from such condition is not valid when at least one of the
98
underlying conditions is switched off (see subquery code for more details)
102
(null_rejecting & (1<<i)) means the condition is '=' and no matching
103
rows will be produced if items[i] IS NULL (see add_not_null_conds())
105
key_part_map null_rejecting;
106
table_map depend_map; /**< Table depends on these tables. */
107
/** null byte position in the key_buf. Used for REF_OR_NULL optimization */
108
unsigned char *null_ref_key;
110
true <=> disable the "cache" as doing lookup with the same key value may
111
produce different results (because of Index Condition Pushdown)
118
#include "drizzled/join_cache.h"
120
/** The states in which a nested loop join can be in */
121
enum enum_nested_loop_state
123
NESTED_LOOP_KILLED= -2,
124
NESTED_LOOP_ERROR= -1,
126
NESTED_LOOP_NO_MORE_ROWS= 1,
127
NESTED_LOOP_QUERY_LIMIT= 3,
128
NESTED_LOOP_CURSOR_LIMIT= 4
131
/** Description of a join type */
149
84
class SemiJoinTable;
151
typedef enum_nested_loop_state (*Next_select_func)(JOIN *, JoinTable *, bool);
152
typedef int (*Read_record_func)(JoinTable *tab);
153
Next_select_func setup_end_select_func(JOIN *join);
155
#include "drizzled/join_table.h"
157
87
enum_nested_loop_state sub_select_cache(JOIN *join, JoinTable *join_tab, bool end_of_records);
158
88
enum_nested_loop_state sub_select(JOIN *join,JoinTable *join_tab, bool end_of_records);
236
166
when val IS NULL.
238
168
bool null_rejecting;
239
bool *cond_guard; /**< @see KEYUSE::cond_guard */
240
uint32_t sj_pred_no; /**< @see KEYUSE::sj_pred_no */
169
bool *cond_guard; /**< @see KeyUse::cond_guard */
170
uint32_t sj_pred_no; /**< @see KeyUse::sj_pred_no */
243
173
/*****************************************************************************
388
318
void update_tmptable_sum_func(Item_sum **func,Table *tmp_table);
389
319
bool find_eq_ref_candidate(Table *table, table_map sj_inner_tables);
390
320
bool only_eq_ref_tables(JOIN *join, order_st *order, table_map tables);
391
bool create_ref_for_key(JOIN *join, JoinTable *j, KEYUSE *org_keyuse, table_map used_tables);
321
bool create_ref_for_key(JOIN *join, JoinTable *j, KeyUse *org_keyuse, table_map used_tables);
393
323
/* functions from opt_sum.cc */
394
324
bool simple_pred(Item_func *func_item, Item **args, bool *inv_order);