-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathitem_cmpfunc.h
2867 lines (2506 loc) · 105 KB
/
item_cmpfunc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef ITEM_CMPFUNC_INCLUDED
#define ITEM_CMPFUNC_INCLUDED
/* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/* compare and test functions */
#include <assert.h>
#include <sys/types.h>
#include <cstring>
#include <memory>
#include "field_types.h"
#include "my_alloc.h"
#include "my_compiler.h"
#include "my_inttypes.h"
#include "my_table_map.h"
#include "my_time.h"
#include "mysql/udf_registration_types.h"
#include "mysql_time.h"
#include "sql-common/my_decimal.h"
#include "sql/enum_query_type.h"
#include "sql/item.h"
#include "sql/item_func.h" // Item_int_func
#include "sql/item_row.h" // Item_row
#include "sql/mem_root_array.h" // Mem_root_array
#include "sql/parse_location.h" // POS
#include "sql/sql_const.h"
#include "sql/sql_list.h"
#include "sql/table.h"
#include "sql_string.h"
#include "template_utils.h" // down_cast
class Arg_comparator;
class Field;
class Item_eq_base;
class Item_in_subselect;
class Item_subselect;
class Item_sum_hybrid;
class Json_scalar_holder;
class Json_wrapper;
class PT_item_list;
class Query_block;
class THD;
struct CHARSET_INFO;
struct MY_BITMAP;
struct Parse_context;
Item *make_condition(Parse_context *pc, Item *item);
typedef int (Arg_comparator::*arg_cmp_func)();
/// A class that represents a join condition in a hash join. The class holds an
/// equality condition, as well as a pre-calculated bitmap of the used tables
/// (Item::used_tables()) for each side of the condition.
///
/// The class also contains one Item for each side of the condition. In most
/// cases, the Item is only a pointer to the left/right Item of the join
/// condition. But for certain data types (DECIMAL, DOUBLE(M, N), FLOAT(M, N)),
/// the Item might be a typecast. Either way, the caller should use these Items
/// when i.e. reading the values from the join condition, so that the values are
/// read in the right data type context. See the comments for
/// Item_eq_base::create_cast_if_needed for more details around this.
class HashJoinCondition {
public:
HashJoinCondition(Item_eq_base *join_condition, MEM_ROOT *mem_root);
Item_eq_base *join_condition() const { return m_join_condition; }
Item *left_extractor() const { return m_left_extractor; }
Item *right_extractor() const { return m_right_extractor; }
bool left_uses_any_table(table_map tables) const {
return (m_left_used_tables & tables) != 0;
}
bool right_uses_any_table(table_map tables) const {
return (m_right_used_tables & tables) != 0;
}
size_t max_character_length() const { return m_max_character_length; }
bool store_full_sort_key() const { return m_store_full_sort_key; }
/// Returns true if this join condition evaluates to TRUE if both
/// operands are NULL.
bool null_equals_null() const { return m_null_equals_null; }
private:
Item_eq_base *m_join_condition;
Item *m_left_extractor;
Item *m_right_extractor;
// Item::used_tables() is heavily used during the join to determine which side
// of the condition we are to read the value from, so caching the result of
// used_tables() gives a nice speedup.
const table_map m_left_used_tables;
const table_map m_right_used_tables;
// The maximum number of characters among the two arguments. This is
// especially relevant when we have a PAD SPACE collation and the SQL mode
// PAD_CHAR_TO_FULL_LENGTH enabled, since we will have to pad the shortest
// argument to the same length as the longest argument.
const size_t m_max_character_length{0};
// Normally, we store the full sort key for the condition as key in the hash
// table. However, if the string is very long, or we have a PAD SPACE
// collation, this could result in huge sort keys. If we detect that this
// could happen in the worst case, we store just a hash in the key instead (so
// we hash the hash). If so, we have to do a recheck afterwards, in order to
// guard against hash collisions.
bool m_store_full_sort_key;
// True if NULL is considered equal to NULL, and not as UNKNOWN.
bool m_null_equals_null;
};
class Arg_comparator {
Item **left{nullptr};
Item **right{nullptr};
arg_cmp_func func{nullptr};
Item_func *owner{nullptr};
Arg_comparator *comparators{nullptr}; // used only for compare_row()
uint16 comparator_count{0};
double precision{0.0};
/* Fields used in DATE/DATETIME comparison. */
Item *left_cache{nullptr}; // Cached values of "left" and "right" items
Item *right_cache{nullptr};
bool set_null{true}; // true <=> set owner->null_value
// when one of arguments is NULL.
bool try_year_cmp_func(Item_result type);
static bool get_date_from_const(Item *date_arg, Item *str_arg,
ulonglong *const_value);
/**
Only used by compare_json() in the case where a JSON value is
compared to an SQL value. This member points to pre-allocated
memory that can be used instead of the heap when converting the
SQL value to a JSON value.
*/
Json_scalar_holder *json_scalar{nullptr};
public:
DTCollation cmp_collation;
/* Allow owner function to use string buffers. */
String value1, value2;
Arg_comparator() = default;
Arg_comparator(Item **left, Item **right) : left(left), right(right) {}
bool set_compare_func(Item_func *owner, Item_result type);
bool set_cmp_func(Item_func *owner_arg, Item **left, Item **right,
Item_result type);
bool set_cmp_func(Item_func *owner_arg, Item **left, Item **right,
bool set_null_arg);
bool set_cmp_func(Item_func *owner_arg, Item **left, Item **right,
bool set_null_arg, Item_result type);
/**
Comparison function are expected to operate on arguments having the
same data types. Since MySQL has very loosened up rules, it accepts
all kind of arguments which the standard SQL does not allow, and then it
converts the arguments internally to ones usable in the comparison.
This function transforms these internal conversions to explicit CASTs
so that the internally executed query becomes compatible with the standard
At the moment nodes are injected only for comparisons between:
1) temporal types and numeric data types: in which case the
comparison is normally done as DOUBLE, so the arguments which are not
floating point, will get converted to DOUBLE, and also for
2) comparisons between temporal types: in which case the
comparison happens as DATETIME if the arguments have different data
types, so in this case the temporal arguments that are not DATETIME
will get wrapped in a CAST to DATETIME.
WL#12108; This function will limit itself to comparison between regular
functions, aggregation functions and fields, all of which are constant
for execution (so this excludes stored procedures, stored functions, GC,
user defined functions, as well as literals).
For const arguments, see type conversions done in fold_condition.
@return false if successful, true otherwise
*/
bool inject_cast_nodes();
inline int compare() { return (this->*func)(); }
int compare_string(); // compare args[0] & args[1]
int compare_binary_string(); // compare args[0] & args[1]
int compare_real(); // compare args[0] & args[1]
int compare_decimal(); // compare args[0] & args[1]
int compare_int_signed(); // compare args[0] & args[1]
int compare_int_signed_unsigned();
int compare_int_unsigned_signed();
int compare_int_unsigned();
int compare_time_packed();
int compare_row(); // compare args[0] & args[1]
int compare_real_fixed();
int compare_datetime(); // compare args[0] & args[1] as DATETIMEs
int compare_json();
bool compare_null_values();
static bool can_compare_as_dates(const Item *a, const Item *b);
void set_datetime_cmp_func(Item_func *owner_arg, Item **a1, Item **b1);
static arg_cmp_func comparator_matrix[5];
void cleanup();
/*
Set correct cmp_context if items would be compared as INTs.
*/
inline void set_cmp_context_for_datetime() {
assert(func == &Arg_comparator::compare_datetime);
if ((*left)->is_temporal()) (*left)->cmp_context = INT_RESULT;
if ((*right)->is_temporal()) (*right)->cmp_context = INT_RESULT;
}
Item_result get_compare_type() const { return m_compare_type; }
uint get_child_comparator_count() const { return comparator_count; }
Arg_comparator *get_child_comparators() const { return comparators; }
bool compare_as_json() const { return func == &Arg_comparator::compare_json; }
/// @returns true if the class has decided that values should be extracted
/// from the Items using function pointers set up by this class.
bool use_custom_value_extractors() const {
return get_value_a_func != nullptr;
}
// Read the value from one of the Items (decided by "left_argument"), using
// the function pointers that this class has set up. This can happen for DATE,
// TIME, DATETIME and YEAR values, and the returned value is a temporal value
// in packed format.
longlong extract_value_from_argument(THD *thd, Item *item, bool left_argument,
bool *is_null) const;
Item **get_left_ptr() const { return left; }
Item *get_right() const { return *right; }
private:
/// A function pointer that is used for retrieving the value from argument
/// "left". This function is only used when we are comparing in a datetime
/// context, and it retrieves the value as a DATE, TIME, DATETIME or YEAR,
/// depending on the comparison context.
///
/// @param thd thread handle. Used to retrieve the SQL mode among other things
/// @param item_arg the item to retrieve the value from
/// @param cache_arg a pointer to an Item where we can cache the value
/// from "item_arg". Can be nullptr
/// @param warn_item if raising an conversion warning, the warning gets the
/// data type and item name from this item
/// @param is_null whether or not "item_arg" returned SQL NULL
///
/// @returns a DATE/TIME/YEAR/DATETIME value, in packed format
longlong (*get_value_a_func)(THD *thd, Item ***item_arg, Item **cache_arg,
const Item *warn_item, bool *is_null){nullptr};
// This function does the same as "get_value_a_func", except that it returns
// the value from the argument "right" (the right side of the comparison).
longlong (*get_value_b_func)(THD *thd, Item ***item_arg, Item **cache_arg,
const Item *warn_item, bool *is_null){nullptr};
// The data type that is used when comparing the two Items. I.e., if the type
// is INT_RESULT, we call val_int() on both sides and compare those.
Item_result m_compare_type{INVALID_RESULT};
};
class Item_bool_func : public Item_int_func {
protected:
Item_bool_func() : Item_int_func() { set_data_type_bool(); }
explicit Item_bool_func(const POS &pos) : Item_int_func(pos) {
set_data_type_bool();
}
explicit Item_bool_func(Item *a) : Item_int_func(a) { set_data_type_bool(); }
Item_bool_func(const POS &pos, Item *a) : Item_int_func(pos, a) {
set_data_type_bool();
}
Item_bool_func(Item *a, Item *b, Item *c) : Item_int_func(a, b, c) {
set_data_type_bool();
}
Item_bool_func(Item *a, Item *b) : Item_int_func(a, b) {
set_data_type_bool();
}
Item_bool_func(const POS &pos, Item *a, Item *b) : Item_int_func(pos, a, b) {
set_data_type_bool();
}
Item_bool_func(const POS &pos, Item *a, Item *b, Item *c)
: Item_int_func(pos, a, b, c) {
set_data_type_bool();
}
Item_bool_func(THD *thd, Item_bool_func *item)
: Item_int_func(thd, item),
m_created_by_in2exists(item->m_created_by_in2exists) {
set_data_type_bool();
}
public:
bool is_bool_func() const override { return true; }
bool resolve_type(THD *thd) override {
max_length = 1;
return Item_int_func::resolve_type(thd);
}
uint decimal_precision() const override { return 1; }
bool created_by_in2exists() const override { return m_created_by_in2exists; }
void set_created_by_in2exists();
static const char *bool_transform_names[10];
/**
Array that transforms a boolean test according to another.
First dimension is existing value, second dimension is test to apply
*/
static const Bool_test bool_transform[10][8];
private:
/**
True <=> this item was added by IN->EXISTS subquery transformation, and
should thus be deleted if we switch to materialization.
*/
bool m_created_by_in2exists{false};
};
/**
A predicate that is "always true" or "always false". To be used as a
standalone condition or as part of conditions, together with other condition
and predicate objects.
Mostly used when generating conditions internally.
*/
class Item_func_bool_const : public Item_bool_func {
public:
Item_func_bool_const() : Item_bool_func() {
max_length = 1;
used_tables_cache = 0;
not_null_tables_cache = 0;
fixed = true;
}
explicit Item_func_bool_const(const POS &pos) : Item_bool_func(pos) {
max_length = 1;
used_tables_cache = 0;
not_null_tables_cache = 0;
fixed = true;
}
bool fix_fields(THD *, Item **) override { return false; }
bool basic_const_item() const override { return true; }
void cleanup() override { result_field = nullptr; }
};
/// A predicate that is "always true".
class Item_func_true : public Item_func_bool_const {
public:
Item_func_true() : Item_func_bool_const() {}
explicit Item_func_true(const POS &pos) : Item_func_bool_const(pos) {}
const char *func_name() const override { return "true"; }
bool val_bool() override { return true; }
longlong val_int() override { return 1; }
void print(const THD *, String *str, enum_query_type) const override {
str->append("true");
}
enum Functype functype() const override { return TRUE_FUNC; }
};
/// A predicate that is "always false".
class Item_func_false : public Item_func_bool_const {
public:
Item_func_false() : Item_func_bool_const() {}
explicit Item_func_false(const POS &pos) : Item_func_bool_const(pos) {}
const char *func_name() const override { return "false"; }
bool val_bool() override { return false; }
longlong val_int() override { return 0; }
void print(const THD *, String *str, enum_query_type) const override {
str->append("false");
}
enum Functype functype() const override { return FALSE_FUNC; }
};
/**
Item class, to represent <code>X IS [NOT] (TRUE | FALSE)</code>
boolean predicates.
*/
class Item_func_truth final : public Item_bool_func {
typedef Item_bool_func super;
public:
longlong val_int() override;
bool resolve_type(THD *) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
Item *truth_transformer(THD *, Bool_test test) override {
truth_test = super::bool_transform[truth_test][test];
return this;
}
const char *func_name() const override {
return super::bool_transform_names[truth_test];
}
enum Functype functype() const override { return ISTRUTH_FUNC; }
Item_func_truth(const POS &pos, Item *a, Bool_test truth_test)
: super(pos, a), truth_test(truth_test) {
null_on_null = false;
switch (truth_test) {
case BOOL_IS_TRUE:
case BOOL_IS_FALSE:
case BOOL_NOT_TRUE:
case BOOL_NOT_FALSE:
break;
default:
assert(false);
}
}
Item_func_truth(Item *a, Bool_test truth_test)
: super(a), truth_test(truth_test) {
null_on_null = false;
switch (truth_test) {
case BOOL_IS_TRUE:
case BOOL_IS_FALSE:
case BOOL_NOT_TRUE:
case BOOL_NOT_FALSE:
break;
default:
assert(false);
}
}
void apply_is_true() override {
/*
This item cannot produce NULL result. But, if the upper item confuses
NULL and FALSE, we can do as if NULL input caused a NULL result when it
actually causes a FALSE result.
*/
switch (truth_test) {
case BOOL_IS_TRUE:
case BOOL_IS_FALSE:
null_on_null = true;
default:
break;
}
}
protected:
Bool_test truth_test; ///< The value we're testing for.
};
static const int UNKNOWN = -1;
/*
Item_in_optimizer(Item_in_subselect(...))
Item_in_optimizer is used to wrap an instance of Item_in_subselect. This
class does the following:
- Evaluate the left expression and store it in Item_cache_* object (to
avoid re-evaluating it many times during subquery execution)
- Shortcut the evaluation of "NULL IN (...)" to NULL in the cases where we
don't care if the result is NULL or FALSE.
args[0] keeps a reference to the Item_in_subselect object.
NOTE
It is not quite clear why the above listed functionality should be
placed into a separate class called 'Item_in_optimizer'.
*/
class Item_in_optimizer final : public Item_bool_func {
private:
Item_cache *cache{nullptr};
/**
Stores the value of "NULL IN (SELECT ...)" for uncorrelated subqueries:
UNKNOWN - "NULL in (SELECT ...)" has not yet been evaluated
FALSE - result is FALSE
TRUE - result is NULL
*/
int result_for_null_param{UNKNOWN};
public:
Item_in_optimizer(Item_in_subselect *item)
: Item_bool_func(pointer_cast<Item *>(item)) {
set_subquery();
}
bool fix_fields(THD *, Item **) override;
bool fix_left(THD *thd);
void fix_after_pullout(Query_block *parent_query_block,
Query_block *removed_query_block) override;
bool split_sum_func(THD *thd, Ref_item_array ref_item_array,
mem_root_deque<Item *> *fields) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
bool is_null() override;
longlong val_int() override;
void cleanup() override;
const char *func_name() const override { return "<in_optimizer>"; }
Item_cache **get_cache() { return &cache; }
void update_used_tables() override;
};
/// Abstract factory interface for creating comparison predicates.
class Comp_creator {
public:
virtual ~Comp_creator() = default;
virtual Item_bool_func *create(Item *a, Item *b) const = 0;
/// This interface is only used by Item_allany_subselect.
virtual const char *symbol(bool invert) const = 0;
virtual bool eqne_op() const = 0;
virtual bool l_op() const = 0;
};
/// Abstract base class for the comparison operators =, <> and <=>.
class Linear_comp_creator : public Comp_creator {
public:
Item_bool_func *create(Item *a, Item *b) const override;
bool eqne_op() const override { return true; }
bool l_op() const override { return false; }
protected:
/**
Creates only an item tree node, without attempting to rewrite row
constructors.
@see create()
*/
virtual Item_bool_func *create_scalar_predicate(Item *a, Item *b) const = 0;
/// Combines a list of conditions <code>exp op exp</code>.
virtual Item_bool_func *combine(List<Item> list) const = 0;
};
class Eq_creator : public Linear_comp_creator {
public:
const char *symbol(bool invert) const override { return invert ? "<>" : "="; }
protected:
Item_bool_func *create_scalar_predicate(Item *a, Item *b) const override;
Item_bool_func *combine(List<Item> list) const override;
};
class Equal_creator : public Linear_comp_creator {
public:
const char *symbol(bool invert [[maybe_unused]]) const override {
// This will never be called with true.
assert(!invert);
return "<=>";
}
protected:
Item_bool_func *create_scalar_predicate(Item *a, Item *b) const override;
Item_bool_func *combine(List<Item> list) const override;
};
class Ne_creator : public Linear_comp_creator {
public:
const char *symbol(bool invert) const override { return invert ? "=" : "<>"; }
protected:
Item_bool_func *create_scalar_predicate(Item *a, Item *b) const override;
Item_bool_func *combine(List<Item> list) const override;
};
class Gt_creator : public Comp_creator {
public:
Item_bool_func *create(Item *a, Item *b) const override;
const char *symbol(bool invert) const override { return invert ? "<=" : ">"; }
bool eqne_op() const override { return false; }
bool l_op() const override { return false; }
};
class Lt_creator : public Comp_creator {
public:
Item_bool_func *create(Item *a, Item *b) const override;
const char *symbol(bool invert) const override { return invert ? ">=" : "<"; }
bool eqne_op() const override { return false; }
bool l_op() const override { return true; }
};
class Ge_creator : public Comp_creator {
public:
Item_bool_func *create(Item *a, Item *b) const override;
const char *symbol(bool invert) const override { return invert ? "<" : ">="; }
bool eqne_op() const override { return false; }
bool l_op() const override { return false; }
};
class Le_creator : public Comp_creator {
public:
Item_bool_func *create(Item *a, Item *b) const override;
const char *symbol(bool invert) const override { return invert ? ">" : "<="; }
bool eqne_op() const override { return false; }
bool l_op() const override { return true; }
};
/// Base class for functions that usually take two arguments, which are possibly
/// strings, and perform some kind of comparison on the two arguments and return
/// a boolean. The functions may take more than two arguments (for example, LIKE
/// takes an optional third argument in the ESCAPE clause), but all of the
/// functions perform a comparison between the first two arguments, and extra
/// arguments are modifiers that affect how the comparison is performed.
class Item_bool_func2 : public Item_bool_func {
private:
bool convert_constant_arg(THD *thd, Item *field, Item **item,
bool *converted);
protected:
Arg_comparator cmp;
bool abort_on_null{false};
Item_bool_func2(Item *a, Item *b)
: Item_bool_func(a, b), cmp(args, args + 1) {}
Item_bool_func2(Item *a, Item *b, Item *c)
: Item_bool_func(a, b, c), cmp(args, args + 1) {}
Item_bool_func2(const POS &pos, Item *a, Item *b)
: Item_bool_func(pos, a, b), cmp(args, args + 1) {}
Item_bool_func2(const POS &pos, Item *a, Item *b, Item *c)
: Item_bool_func(pos, a, b, c), cmp(args, args + 1) {}
public:
bool resolve_type(THD *) override;
/// Sets up a comparator of the correct type based on the type of the
/// function's arguments. Also sets up caches to hold constant values
/// converted to the type expected by the comparator. See
/// Arg_comparator::set_cmp_func().
virtual bool set_cmp_func() {
return cmp.set_cmp_func(this, args, args + 1, is_nullable());
}
optimize_type select_optimize(const THD *) override { return OPTIMIZE_OP; }
/// @returns an operator REV_OP so that "B REV_OP A" is equivalent to
/// "A this_operator B".
virtual enum Functype rev_functype() const { return UNKNOWN_FUNC; }
bool have_rev_func() const override { return rev_functype() != UNKNOWN_FUNC; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override {
Item_func::print_op(thd, str, query_type);
}
bool is_null() override { return args[0]->is_null() || args[1]->is_null(); }
const CHARSET_INFO *compare_collation() const override {
return cmp.cmp_collation.collation;
}
Item_result compare_type() const { return cmp.get_compare_type(); }
void apply_is_true() override { abort_on_null = true; }
/// Treat UNKNOWN result like FALSE because callers see no difference
bool ignore_unknown() const { return abort_on_null; }
void cleanup() override {
Item_bool_func::cleanup();
cmp.cleanup();
}
const Arg_comparator *get_comparator() const { return &cmp; }
Item *replace_scalar_subquery(uchar *) override;
friend class Arg_comparator;
bool allow_replacement(Item_field *const original,
Item *const subst) override {
/*
If UNKNOWN results can be treated as false (e.g when placed in WHERE, ON
or HAVING), a non-nullable field can be replaced with a nullable one.
*/
return ignore_unknown() || original->is_nullable() || !subst->is_nullable();
}
};
/**
Item_func_comparison is a class for comparison functions that take two
arguments and return a boolean result.
It is a common class for the regular comparison operators (=, <>, <, <=,
>, >=) as well as the special <=> equality operator.
*/
class Item_func_comparison : public Item_bool_func2 {
public:
Item_func_comparison(Item *a, Item *b) : Item_bool_func2(a, b) {
allowed_arg_cols = 0; // Fetch this value from first argument
}
Item_func_comparison(const POS &pos, Item *a, Item *b)
: Item_bool_func2(pos, a, b) {
allowed_arg_cols = 0; // Fetch this value from first argument
}
Item *truth_transformer(THD *, Bool_test) override;
virtual Item *negated_item();
bool subst_argument_checker(uchar **) override { return true; }
bool is_null() override;
bool cast_incompatible_args(uchar *) override;
float get_filtering_effect(THD *thd, table_map filter_for_table,
table_map read_tables,
const MY_BITMAP *fields_to_ignore,
double rows_in_table) override;
bool gc_subst_analyzer(uchar **) override { return true; }
};
/**
XOR inherits from Item_bool_func2 because it is not optimized yet.
Later, when XOR is optimized, it needs to inherit from
Item_cond instead. See WL#5800.
*/
class Item_func_xor final : public Item_bool_func2 {
typedef Item_bool_func2 super;
public:
Item_func_xor(Item *i1, Item *i2) : Item_bool_func2(i1, i2) {}
Item_func_xor(const POS &pos, Item *i1, Item *i2)
: Item_bool_func2(pos, i1, i2) {}
enum Functype functype() const override { return XOR_FUNC; }
const char *func_name() const override { return "xor"; }
bool do_itemize(Parse_context *pc, Item **res) override;
longlong val_int() override;
void apply_is_true() override {}
Item *truth_transformer(THD *, Bool_test) override;
float get_filtering_effect(THD *thd, table_map filter_for_table,
table_map read_tables,
const MY_BITMAP *fields_to_ignore,
double rows_in_table) override;
};
class Item_func_not : public Item_bool_func {
public:
Item_func_not(Item *a) : Item_bool_func(a) {}
Item_func_not(const POS &pos, Item *a) : Item_bool_func(pos, a) {}
longlong val_int() override;
enum Functype functype() const override { return NOT_FUNC; }
const char *func_name() const override { return "not"; }
Item *truth_transformer(THD *, Bool_test) override;
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
float get_filtering_effect(THD *thd, table_map filter_for_table,
table_map read_tables,
const MY_BITMAP *fields_to_ignore,
double rows_in_table) override;
};
/**
Wrapper class when MATCH function is used in WHERE clause.
The MATCH clause can be used as a function returning a floating point value
in the SELECT list or in the WHERE clause. However, it may also be used as
a boolean function in the WHERE clause, where it has different semantics than
when used together with a comparison operator. With a comparison operator,
the match operation is performed with ranking. To preserve this behavior,
the Item_func_match object is wrapped inside an object of class
Item_func_match_predicate, which effectively transforms the function into
a predicate. The overridden functions implemented in this class generally
forward all evaluation to the underlying object.
*/
class Item_func_match_predicate final : public Item_bool_func {
public:
explicit Item_func_match_predicate(Item *a) : Item_bool_func(a) {}
longlong val_int() override;
enum Functype functype() const override { return MATCH_FUNC; }
const char *func_name() const override { return "match"; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override {
args[0]->print(thd, str, query_type);
}
float get_filtering_effect(THD *thd, table_map filter_for_table,
table_map read_tables,
const MY_BITMAP *fields_to_ignore,
double rows_in_table) override {
return args[0]->get_filtering_effect(thd, filter_for_table, read_tables,
fields_to_ignore, rows_in_table);
}
};
class Item_maxmin_subselect;
class JOIN;
/*
trigcond<param>(arg) ::= param? arg : true
The class Item_func_trig_cond is used for guarded predicates
which are employed only for internal purposes.
A guarded predicate is an object consisting of an a regular or
a guarded predicate P and a pointer to a boolean guard variable g.
A guarded predicate P/g is evaluated to true if the value of the
guard g is false, otherwise it is evaluated to the same value that
the predicate P: val(P/g)= g ? val(P):true.
Guarded predicates allow us to include predicates into a conjunction
conditionally. Currently they are utilized for pushed down predicates
in queries with outer join operations.
In the future, probably, it makes sense to extend this class to
the objects consisting of three elements: a predicate P, a pointer
to a variable g and a firing value s with following evaluation
rule: val(P/g,s)= g==s? val(P) : true. It will allow us to build only
one item for the objects of the form P/g1/g2...
Objects of this class are built only for query execution after
the execution plan has been already selected. That's why this
class needs only val_int out of generic methods.
Current uses of Item_func_trig_cond objects:
- To wrap selection conditions when executing outer joins
- To wrap condition that is pushed down into subquery
*/
class Item_func_trig_cond final : public Item_bool_func {
public:
enum enum_trig_type {
/**
This trigger type deactivates join conditions when a row has been
NULL-complemented. For example, in t1 LEFT JOIN t2, the join condition
can be tested on t2's row only if that row is not NULL-complemented.
*/
IS_NOT_NULL_COMPL,
/**
This trigger type deactivates predicated from WHERE condition when no
row satisfying the join condition has been found. For Example, in t1
LEFT JOIN t2, the where condition pushed to t2 can be tested only after
at least one t2 row has been produced, which may be a NULL-complemented
row.
*/
FOUND_MATCH,
/**
In IN->EXISTS subquery transformation, new predicates are added:
WHERE inner_field=outer_field OR inner_field IS NULL,
as well as
HAVING inner_field IS NOT NULL,
are disabled if outer_field is a NULL value
*/
OUTER_FIELD_IS_NOT_NULL
};
private:
/** Pointer to trigger variable */
bool *trig_var;
/// Optional: JOIN of table which is the source of trig_var
const JOIN *m_join;
/// Optional: if join!=NULL: index of table
plan_idx m_idx;
/** Type of trig_var; for printing */
enum_trig_type trig_type;
public:
/**
@param a the item for @<condition@>
@param f pointer to trigger variable
@param join if a table's property is the source of 'f', JOIN
which owns this table; NULL otherwise.
@param idx if join!=NULL: index of this table in the
JOIN_TAB/QEP_TAB array. NO_PLAN_IDX otherwise.
@param trig_type_arg type of 'f'
*/
Item_func_trig_cond(Item *a, bool *f, const JOIN *join, plan_idx idx,
enum_trig_type trig_type_arg)
: Item_bool_func(a),
trig_var(f),
m_join(join),
m_idx(idx),
trig_type(trig_type_arg) {}
longlong val_int() override;
enum Functype functype() const override { return TRIG_COND_FUNC; }
/// '@<if@>', to distinguish from the if() SQL function
const char *func_name() const override { return "<if>"; }
/// Get range of inner tables spanned by associated outer join operation
void get_table_range(Table_ref **first_table, Table_ref **last_table) const;
/// Get table_map of inner tables spanned by associated outer join operation
table_map get_inner_tables() const;
bool fix_fields(THD *thd, Item **ref) override {
if (Item_bool_func::fix_fields(thd, ref)) return true;
add_trig_func_tables();
return false;
}
void add_trig_func_tables() {
if (trig_type == IS_NOT_NULL_COMPL || trig_type == FOUND_MATCH) {
assert(m_join != nullptr);
// Make this function dependent on the inner tables
used_tables_cache |= get_inner_tables();
} else if (trig_type == OUTER_FIELD_IS_NOT_NULL) {
used_tables_cache |= OUTER_REF_TABLE_BIT;
}
}
void update_used_tables() override {
Item_bool_func::update_used_tables();
add_trig_func_tables();
}
void fix_after_pullout(Query_block *parent_query_block,
Query_block *removed_query_block) override {
Item_bool_func::fix_after_pullout(parent_query_block, removed_query_block);
add_trig_func_tables();
}
const JOIN *get_join() const { return m_join; }
enum enum_trig_type get_trig_type() const { return trig_type; }
bool *get_trig_var() { return trig_var; }
enum_trig_type get_trig_type() { return trig_type; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
plan_idx idx() const { return m_idx; }
bool contains_only_equi_join_condition() const override;
};
class Item_func_not_all : public Item_func_not {
/* allow to check presence of values in max/min optimization */
Item_sum_hybrid *test_sum_item;
Item_maxmin_subselect *test_sub_item;
Item_subselect *subselect;
bool abort_on_null;
public:
bool show;
Item_func_not_all(Item *a)
: Item_func_not(a),
test_sum_item(nullptr),
test_sub_item(nullptr),
subselect(nullptr),
abort_on_null(false),
show(false) {}
void apply_is_true() override { abort_on_null = true; }
/// Treat UNKNOWN result like FALSE because callers see no difference
bool ignore_unknown() const { return abort_on_null; }
longlong val_int() override;
enum Functype functype() const override { return NOT_ALL_FUNC; }
const char *func_name() const override { return "<not>"; }
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
void set_sum_test(Item_sum_hybrid *item) { test_sum_item = item; }
void set_sub_test(Item_maxmin_subselect *item) { test_sub_item = item; }
void set_subselect(Item_subselect *item) { subselect = item; }
table_map not_null_tables() const override {
/*
See handling of not_null_tables_cache in
Item_in_optimizer::fix_fields().
This item is the result of a transformation from an ALL clause
such as
left-expr < ALL(subquery)
into
<not>(left-expr >= ANY(subquery)
An inequality usually rejects NULLs from both operands, so the
not_null_tables() of the inequality is the union of the
null-rejecting tables of both operands. However, since this is a
transformed ALL clause that should return true if the subquery
is empty (even if left-expr is NULL), it is not null rejecting
for left-expr. The not null tables mask for left-expr should be
removed, leaving only the null-rejecting tables of the
subquery. Item_subselect::not_null_tables() always returns 0 (no
null-rejecting tables). Therefore, always return 0.
*/
return 0;
}
bool empty_underlying_subquery();
Item *truth_transformer(THD *, Bool_test) override;
};
class Item_func_nop_all final : public Item_func_not_all {
public:
Item_func_nop_all(Item *a) : Item_func_not_all(a) {}
longlong val_int() override;
const char *func_name() const override { return "<nop>"; }
table_map not_null_tables() const override { return not_null_tables_cache; }
Item *truth_transformer(THD *, Bool_test) override;
};
/**
Base class for the equality comparison operators = and <=>.
Both of these operators can be used to construct a key for a hash join, as
both represent an equality, only differing in how NULL values are handled. The
common code for constructing hash join keys is located in this class.
*/
class Item_eq_base : public Item_func_comparison {
protected:
Item_eq_base(Item *a, Item *b) : Item_func_comparison(a, b) {}
Item_eq_base(const POS &pos, Item *a, Item *b)
: Item_func_comparison(pos, a, b) {}