-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathsql_type.h
8019 lines (7555 loc) · 295 KB
/
sql_type.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 SQL_TYPE_H_INCLUDED
#define SQL_TYPE_H_INCLUDED
/*
Copyright (c) 2015 MariaDB Foundation.
Copyright (c) 2015, 2022, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
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 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-1335 USA */
#include "mysqld.h"
#include "lex_string.h"
#include "sql_type_timeofday.h"
#include "sql_array.h"
#include "sql_const.h"
#include "sql_time.h"
#include "sql_type_string.h"
#include "sql_type_real.h"
#include "compat56.h"
#include "log_event_data_type.h"
C_MODE_START
#include <ma_dyncol.h>
C_MODE_END
class Field;
class Column_definition;
class Column_definition_attributes;
class Key_part_spec;
class Item;
class Item_const;
class Item_literal;
class Item_param;
class Item_cache;
class Item_copy;
class Item_func_or_sum;
class Item_sum;
class Item_sum_hybrid;
class Item_sum_sum;
class Item_sum_avg;
class Item_sum_variance;
class Item_func_hex;
class Item_hybrid_func;
class Item_func_min_max;
class Item_func_hybrid_field_type;
class Item_bool_func2;
class Item_bool_rowready_func2;
class Item_func_between;
class Item_func_in;
class Item_func_round;
class Item_func_int_val;
class Item_func_abs;
class Item_func_neg;
class Item_func_signed;
class Item_func_unsigned;
class Item_double_typecast;
class Item_float_typecast;
class Item_decimal_typecast;
class Item_char_typecast;
class Item_time_typecast;
class Item_date_typecast;
class Item_datetime_typecast;
class Item_func_plus;
class Item_func_minus;
class Item_func_mul;
class Item_func_div;
class Item_func_mod;
class Item_type_holder;
class cmp_item;
class in_vector;
class Type_handler_data;
class Type_handler_hybrid_field_type;
class Sort_param;
class Arg_comparator;
class Spvar_definition;
class st_value;
class Protocol;
class handler;
struct TABLE;
struct SORT_FIELD_ATTR;
struct SORT_FIELD;
class Vers_history_point;
class Virtual_column_info;
class Conv_source;
class ST_FIELD_INFO;
class Type_collection;
class Create_func;
#define my_charset_numeric my_charset_latin1
enum protocol_send_type_t
{
PROTOCOL_SEND_STRING,
PROTOCOL_SEND_FLOAT,
PROTOCOL_SEND_DOUBLE,
PROTOCOL_SEND_TINY,
PROTOCOL_SEND_SHORT,
PROTOCOL_SEND_LONG,
PROTOCOL_SEND_LONGLONG,
PROTOCOL_SEND_DATETIME,
PROTOCOL_SEND_DATE,
PROTOCOL_SEND_TIME
};
enum scalar_comparison_op
{
SCALAR_CMP_EQ,
SCALAR_CMP_EQUAL,
SCALAR_CMP_LT,
SCALAR_CMP_LE,
SCALAR_CMP_GE,
SCALAR_CMP_GT
};
/*
This enum is intentionally defined as "class" to disallow its implicit
cast as "bool". This is needed to avoid pre-MDEV-32203 constructs like:
if (field->can_optimize_range(...))
do_optimization();
to merge automatically as such - that would change the meaning
to the opposite. The pre-MDEV-32203 code must to be changed to:
if (field->can_optimize_range(...) == Data_type_compatibility::OK)
do_optimization();
*/
enum class Data_type_compatibility
{
OK,
INCOMPATIBLE_DATA_TYPE,
INCOMPATIBLE_COLLATION
};
static inline const LEX_CSTRING
scalar_comparison_op_to_lex_cstring(scalar_comparison_op op)
{
switch (op) {
case SCALAR_CMP_EQ: return LEX_CSTRING{STRING_WITH_LEN("=")};
case SCALAR_CMP_EQUAL: return LEX_CSTRING{STRING_WITH_LEN("<=>")};
case SCALAR_CMP_LT: return LEX_CSTRING{STRING_WITH_LEN("<")};
case SCALAR_CMP_LE: return LEX_CSTRING{STRING_WITH_LEN("<=")};
case SCALAR_CMP_GE: return LEX_CSTRING{STRING_WITH_LEN(">=")};
case SCALAR_CMP_GT: return LEX_CSTRING{STRING_WITH_LEN(">")};
}
DBUG_ASSERT(0);
return LEX_CSTRING{STRING_WITH_LEN("<?>")};
}
class Hasher
{
ulong m_nr1;
ulong m_nr2;
public:
Hasher(): m_nr1(1), m_nr2(4)
{ }
void add_null()
{
m_nr1^= (m_nr1 << 1) | 1;
}
void add(CHARSET_INFO *cs, const uchar *str, size_t length)
{
cs->coll->hash_sort(cs, str, length, &m_nr1, &m_nr2);
}
void add(CHARSET_INFO *cs, const char *str, size_t length)
{
add(cs, (const uchar *) str, length);
}
uint32 finalize() const
{
return (uint32) m_nr1;
}
};
enum partition_value_print_mode_t
{
PARTITION_VALUE_PRINT_MODE_SHOW= 0,
PARTITION_VALUE_PRINT_MODE_FRM= 1
};
enum column_definition_type_t
{
COLUMN_DEFINITION_TABLE_FIELD,
COLUMN_DEFINITION_ROUTINE_PARAM,
COLUMN_DEFINITION_ROUTINE_LOCAL,
COLUMN_DEFINITION_FUNCTION_RETURN
};
class Send_field_extended_metadata
{
LEX_CSTRING m_attr[MARIADB_FIELD_ATTR_LAST+1];
public:
Send_field_extended_metadata()
{
bzero(this, sizeof(*this));
}
bool set_data_type_name(const LEX_CSTRING &str)
{
m_attr[MARIADB_FIELD_ATTR_DATA_TYPE_NAME]= str;
return false;
}
bool set_format_name(const LEX_CSTRING &str)
{
m_attr[MARIADB_FIELD_ATTR_FORMAT_NAME]= str;
return false;
}
bool has_extended_metadata() const
{
for (uint i= 0; i <= MARIADB_FIELD_ATTR_LAST; i++)
{
if (m_attr[i].str)
return true;
}
return false;
}
const LEX_CSTRING &attr(uint i) const
{
DBUG_ASSERT(i <= MARIADB_FIELD_ATTR_LAST);
return m_attr[i];
}
};
class Data_type_statistics
{
public:
uint m_uneven_bit_length;
uint m_fixed_string_total_length;
uint m_fixed_string_count;
uint m_variable_string_total_length;
uint m_variable_string_count;
uint m_blob_count;
Data_type_statistics()
:m_uneven_bit_length(0),
m_fixed_string_total_length(0),
m_fixed_string_count(0),
m_variable_string_total_length(0),
m_variable_string_count(0),
m_blob_count(0)
{ }
uint string_count() const
{
return m_fixed_string_count + m_variable_string_count;
}
uint string_total_length() const
{
return m_fixed_string_total_length + m_variable_string_total_length;
}
};
class Typelib: public TYPELIB
{
public:
Typelib(uint count, const char **type_names, unsigned int *type_lengths)
{
TYPELIB::count= count;
TYPELIB::name= "";
TYPELIB::type_names= type_names;
TYPELIB::type_lengths= type_lengths;
}
uint max_octet_length() const
{
uint max_length= 0;
for (uint i= 0; i < TYPELIB::count; i++)
{
const uint length= TYPELIB::type_lengths[i];
set_if_bigger(max_length, length);
}
return max_length;
}
};
template<uint sz>
class TypelibBuffer: public Typelib
{
const char *m_type_names[sz + 1];
uint m_type_lengths[sz + 1];
public:
TypelibBuffer(uint count, const LEX_CSTRING *values)
:Typelib(count, m_type_names, m_type_lengths)
{
DBUG_ASSERT(sz >= count);
for (uint i= 0; i < count; i++)
{
DBUG_ASSERT(values[i].str != NULL);
m_type_names[i]= values[i].str;
m_type_lengths[i]= (uint) values[i].length;
}
m_type_names[sz]= NullS; // End marker
m_type_lengths[sz]= 0; // End marker
}
TypelibBuffer(const LEX_CSTRING *values)
:TypelibBuffer(sz, values)
{ }
};
/*
A helper class to store column attributes that are inherited
by columns (from the table level) when not specified explicitly.
*/
class Column_derived_attributes
{
/*
Table level CHARACTER SET and COLLATE value:
CREATE TABLE t1 (a VARCHAR(1), b CHAR(2)) CHARACTER SET latin1;
All character string columns (CHAR, VARCHAR, TEXT)
inherit CHARACTER SET from the table level.
*/
CHARSET_INFO *m_charset;
public:
explicit Column_derived_attributes(CHARSET_INFO *cs)
:m_charset(cs)
{ }
CHARSET_INFO *charset() const { return m_charset; }
};
/*
A helper class to store requests for changes
in multiple column data types during ALTER.
*/
class Column_bulk_alter_attributes
{
/*
Target CHARACTER SET specification in ALTER .. CONVERT, e.g.
ALTER TABLE t1 CONVERT TO CHARACTER SET utf8;
All character string columns (CHAR, VARCHAR, TEXT)
get converted to the "CONVERT TO CHARACTER SET".
*/
CHARSET_INFO *m_alter_table_convert_to_charset;
public:
explicit Column_bulk_alter_attributes(CHARSET_INFO *convert)
:m_alter_table_convert_to_charset(convert)
{ }
CHARSET_INFO *alter_table_convert_to_charset() const
{ return m_alter_table_convert_to_charset; }
};
class Native: public Binary_string
{
public:
Native(char *str, size_t len)
:Binary_string(str, len)
{ }
};
template<size_t buff_sz>
class NativeBuffer: public Native
{
char buff[buff_sz];
public:
NativeBuffer() : Native(buff, buff_sz) { length(0); }
};
class String_ptr
{
protected:
String *m_string_ptr;
public:
String_ptr(String *str)
:m_string_ptr(str)
{ }
String_ptr(Item *item, String *buffer);
const String *string() const
{
DBUG_ASSERT(m_string_ptr);
return m_string_ptr;
}
bool is_null() const { return m_string_ptr == NULL; }
};
class Ascii_ptr: public String_ptr
{
public:
Ascii_ptr(Item *item, String *buffer);
};
template<size_t buff_sz>
class String_ptr_and_buffer: public StringBuffer<buff_sz>,
public String_ptr
{
public:
String_ptr_and_buffer(Item *item)
:String_ptr(item, this)
{ }
};
template<size_t buff_sz>
class Ascii_ptr_and_buffer: public StringBuffer<buff_sz>,
public Ascii_ptr
{
public:
Ascii_ptr_and_buffer(Item *item)
:Ascii_ptr(item, this)
{ }
};
class Dec_ptr
{
protected:
my_decimal *m_ptr;
Dec_ptr() = default;
public:
Dec_ptr(my_decimal *ptr) :m_ptr(ptr) { }
bool is_null() const { return m_ptr == NULL; }
const my_decimal *ptr() const { return m_ptr; }
const my_decimal *ptr_or(const my_decimal *def) const
{
return m_ptr ? m_ptr : def;
}
my_decimal *to_decimal(my_decimal *to) const
{
if (!m_ptr)
return NULL;
*to= *m_ptr;
return to;
}
double to_double() const { return m_ptr ? m_ptr->to_double() : 0.0; }
longlong to_longlong(bool unsigned_flag)
{ return m_ptr ? m_ptr->to_longlong(unsigned_flag) : 0; }
Longlong_null to_xlonglong_null()
{
return m_ptr ? Longlong_null(m_ptr->to_xlonglong()) : Longlong_null();
}
bool to_bool() const { return m_ptr ? m_ptr->to_bool() : false; }
String *to_string(String *to) const
{
return m_ptr ? m_ptr->to_string(to) : NULL;
}
String *to_string(String *to, uint prec, uint dec, char filler)
{
return m_ptr ? m_ptr->to_string(to, prec, dec, filler) : NULL;
}
int to_binary(uchar *bin, int prec, decimal_digits_t scale) const
{
return (m_ptr ? m_ptr : &decimal_zero)->to_binary(bin, prec, scale);
}
int cmp(const my_decimal *dec) const
{
DBUG_ASSERT(m_ptr);
DBUG_ASSERT(dec);
return m_ptr->cmp(dec);
}
int cmp(const Dec_ptr &other) const
{
return cmp(other.m_ptr);
}
};
// A helper class to handle results of val_decimal(), date_op(), etc.
class Dec_ptr_and_buffer: public Dec_ptr
{
protected:
my_decimal m_buffer;
public:
/* scale is int as it can be negative here */
int round_to(my_decimal *to, int scale, decimal_round_mode mode)
{
DBUG_ASSERT(m_ptr);
return m_ptr->round_to(to, scale, mode);
}
int round_self(decimal_digits_t scale, decimal_round_mode mode)
{
return round_to(&m_buffer, scale, mode);
}
int round_self_if_needed(int scale, decimal_round_mode mode)
{
if (scale >= m_ptr->frac)
return E_DEC_OK;
int res= m_ptr->round_to(&m_buffer, scale, mode);
m_ptr= &m_buffer;
return res;
}
String *to_string_round(String *to, decimal_digits_t dec)
{
/*
decimal_round() allows from==to
So it's save even if m_ptr points to m_buffer before this call:
*/
return m_ptr ? m_ptr->to_string_round(to, dec, &m_buffer) : NULL;
}
};
// A helper class to handle val_decimal() results.
class VDec: public Dec_ptr_and_buffer
{
public:
VDec(): Dec_ptr_and_buffer() { }
VDec(Item *item);
void set(Item *a);
};
// A helper class to handler decimal_op() results.
class VDec_op: public Dec_ptr_and_buffer
{
public:
VDec_op(Item_func_hybrid_field_type *item);
};
/*
Get and cache val_decimal() values for two items.
If the first value appears to be NULL, the second value is not evaluated.
*/
class VDec2_lazy
{
public:
VDec m_a;
VDec m_b;
VDec2_lazy(Item *a, Item *b) :m_a(a)
{
if (!m_a.is_null())
m_b.set(b);
}
bool has_null() const
{
return m_a.is_null() || m_b.is_null();
}
};
/**
Class Sec6 represents a fixed point value with 6 fractional digits.
Used e.g. to convert double and my_decimal values to TIME/DATETIME.
*/
class Sec6
{
protected:
ulonglong m_sec; // The integer part, between 0 and LONGLONG_MAX
ulong m_usec; // The fractional part, between 0 and 999999
bool m_neg; // false if positive, true of negative
bool m_truncated; // Indicates if the constructor truncated the value
void make_from_decimal(const my_decimal *d, ulong *nanoseconds);
void make_from_double(double d, ulong *nanoseconds);
void make_from_int(const Longlong_hybrid &nr)
{
m_neg= nr.neg();
m_sec= nr.abs();
m_usec= 0;
m_truncated= false;
}
void reset()
{
m_sec= m_usec= m_neg= m_truncated= 0;
}
Sec6() = default;
bool add_nanoseconds(uint nanoseconds)
{
DBUG_ASSERT(nanoseconds <= 1000000000);
if (nanoseconds < 500)
return false;
m_usec+= (nanoseconds + 500) / 1000;
if (m_usec < 1000000)
return false;
m_usec%= 1000000;
return true;
}
public:
explicit Sec6(double nr)
{
ulong nanoseconds;
make_from_double(nr, &nanoseconds);
}
explicit Sec6(const my_decimal *d)
{
ulong nanoseconds;
make_from_decimal(d, &nanoseconds);
}
explicit Sec6(const Longlong_hybrid &nr)
{
make_from_int(nr);
}
explicit Sec6(longlong nr, bool unsigned_val)
{
make_from_int(Longlong_hybrid(nr, unsigned_val));
}
bool neg() const { return m_neg; }
bool truncated() const { return m_truncated; }
ulonglong sec() const { return m_sec; }
long usec() const { return m_usec; }
/**
Converts Sec6 to MYSQL_TIME
@param thd current thd
@param [out] warn conversion warnings will be written here
@param [out] ltime converted value will be written here
@param fuzzydate conversion flags (TIME_INVALID_DATE, etc)
@returns false for success, true for a failure
*/
bool convert_to_mysql_time(THD *thd,
int *warn,
MYSQL_TIME *ltime,
date_mode_t fuzzydate) const;
protected:
bool to_interval_hhmmssff_only(MYSQL_TIME *to, int *warn) const
{
return number_to_time_only(m_neg, m_sec, m_usec,
TIME_MAX_INTERVAL_HOUR, to, warn);
}
bool to_datetime_or_to_interval_hhmmssff(MYSQL_TIME *to, int *warn) const
{
/*
Convert a number to a time interval.
The following formats are understood:
- 0 <= x <= 999999995959 - parse as hhhhmmss
- 999999995959 < x <= 99991231235959 - parse as YYYYMMDDhhmmss
(YYMMDDhhmmss) (YYYYMMDDhhmmss)
Note, these formats are NOT understood:
- YYMMDD - overlaps with INTERVAL range
- YYYYMMDD - overlaps with INTERVAL range
- YYMMDDhhmmss - overlaps with INTERVAL range, partially
(see TIME_MAX_INTERVAL_HOUR)
If we ever need wider intervals, this code switching between
full datetime and interval-only should be rewised.
*/
DBUG_ASSERT(TIME_MAX_INTERVAL_HOUR <= 999999995959);
/* (YYMMDDhhmmss) */
if (m_sec > 999999995959ULL &&
m_sec <= 99991231235959ULL && m_neg == 0)
return to_datetime_or_date(to, warn, TIME_INVALID_DATES);
if (m_sec / 10000 > TIME_MAX_INTERVAL_HOUR)
{
*warn= MYSQL_TIME_WARN_OUT_OF_RANGE;
return true;
}
return to_interval_hhmmssff_only(to, warn);
}
public:
// [-][DD]hhhmmss.ff, YYMMDDhhmmss.ff, YYYYMMDDhhmmss.ff
bool to_datetime_or_time(MYSQL_TIME *to, int *warn,
date_conv_mode_t mode) const
{
bool rc= m_sec > 9999999 && m_sec <= 99991231235959ULL && !m_neg ?
::number_to_datetime_or_date(m_sec, m_usec, to,
ulonglong(mode & TIME_MODE_FOR_XXX_TO_DATE), warn) < 0 :
::number_to_time_only(m_neg, m_sec, m_usec, TIME_MAX_HOUR, to, warn);
DBUG_ASSERT(*warn || !rc);
return rc;
}
/*
Convert a number in formats YYYYMMDDhhmmss.ff or YYMMDDhhmmss.ff to
TIMESTAMP'YYYY-MM-DD hh:mm:ss.ff'
*/
bool to_datetime_or_date(MYSQL_TIME *to, int *warn,
date_conv_mode_t flags) const
{
if (m_neg)
{
*warn= MYSQL_TIME_WARN_OUT_OF_RANGE;
return true;
}
bool rc= number_to_datetime_or_date(m_sec, m_usec, to,
ulonglong(flags & TIME_MODE_FOR_XXX_TO_DATE),
warn) == -1;
DBUG_ASSERT(*warn || !rc);
return rc;
}
// Convert elapsed seconds to TIME
bool sec_to_time(MYSQL_TIME *ltime, uint dec) const
{
set_zero_time(ltime, MYSQL_TIMESTAMP_TIME);
ltime->neg= m_neg;
if (m_sec > TIME_MAX_VALUE_SECONDS)
{
// use check_time_range() to set ltime to the max value depending on dec
int unused;
ltime->hour= TIME_MAX_HOUR + 1;
check_time_range(ltime, dec, &unused);
return true;
}
DBUG_ASSERT(usec() <= TIME_MAX_SECOND_PART);
ltime->hour= (uint) (m_sec / 3600);
ltime->minute= (uint) (m_sec % 3600) / 60;
ltime->second= (uint) m_sec % 60;
ltime->second_part= m_usec;
return false;
}
Sec6 &trunc(uint dec)
{
m_usec-= my_time_fraction_remainder(m_usec, dec);
return *this;
}
size_t to_string(char *to, size_t nbytes) const
{
return m_usec ?
my_snprintf(to, nbytes, "%s%llu.%06lu",
m_neg ? "-" : "", m_sec, m_usec) :
my_snprintf(to, nbytes, "%s%llu", m_neg ? "-" : "", m_sec);
}
void make_truncated_warning(THD *thd, const char *type_str) const;
};
class Sec9: public Sec6
{
protected:
ulong m_nsec; // Nanoseconds 0..999
void make_from_int(const Longlong_hybrid &nr)
{
Sec6::make_from_int(nr);
m_nsec= 0;
}
Sec9() = default;
public:
Sec9(const my_decimal *d)
{
Sec6::make_from_decimal(d, &m_nsec);
}
Sec9(double d)
{
Sec6::make_from_double(d, &m_nsec);
}
ulong nsec() const { return m_nsec; }
Sec9 &trunc(uint dec)
{
m_nsec= 0;
Sec6::trunc(dec);
return *this;
}
Sec9 &round(uint dec);
Sec9 &round(uint dec, time_round_mode_t mode)
{
return mode == TIME_FRAC_TRUNCATE ? trunc(dec) : round(dec);
}
};
class VSec9: protected Sec9
{
bool m_is_null;
Sec9& to_sec9()
{
DBUG_ASSERT(!is_null());
return *this;
}
public:
VSec9(THD *thd, Item *item, const char *type_str, ulonglong limit);
bool is_null() const { return m_is_null; }
const Sec9& to_const_sec9() const
{
DBUG_ASSERT(!is_null());
return *this;
}
bool neg() const { return to_const_sec9().neg(); }
bool truncated() const { return to_const_sec9().truncated(); }
ulonglong sec() const { return to_const_sec9().sec(); }
long usec() const { return to_const_sec9().usec(); }
bool sec_to_time(MYSQL_TIME *ltime, uint dec) const
{
return to_const_sec9().sec_to_time(ltime, dec);
}
void make_truncated_warning(THD *thd, const char *type_str) const
{
return to_const_sec9().make_truncated_warning(thd, type_str);
}
Sec9 &round(uint dec)
{
return to_sec9().round(dec);
}
Sec9 &round(uint dec, time_round_mode_t mode)
{
return to_sec9().round(dec, mode);
}
};
/*
A heler class to perform additive operations between
two MYSQL_TIME structures and return the result as a
combination of seconds, microseconds and sign.
*/
class Sec6_add
{
ulonglong m_sec; // number of seconds
ulong m_usec; // number of microseconds
bool m_neg; // false if positive, true if negative
bool m_error; // false if the value is OK, true otherwise
void to_hh24mmssff(MYSQL_TIME *ltime, timestamp_type tstype) const
{
bzero(ltime, sizeof(*ltime));
ltime->neg= m_neg;
calc_time_from_sec(ltime, (ulong) (m_sec % SECONDS_IN_24H), m_usec);
ltime->time_type= tstype;
}
public:
/*
@param ltime1 - the first value to add (must be a valid DATE,TIME,DATETIME)
@param ltime2 - the second value to add (must be a valid TIME)
@param sign - the sign of the operation
(+1 for addition, -1 for subtraction)
*/
Sec6_add(const MYSQL_TIME *ltime1, const MYSQL_TIME *ltime2, int sign)
{
DBUG_ASSERT(sign == -1 || sign == 1);
DBUG_ASSERT(!ltime1->neg || ltime1->time_type == MYSQL_TIMESTAMP_TIME);
if (!(m_error= (ltime2->time_type != MYSQL_TIMESTAMP_TIME)))
{
if (ltime1->neg != ltime2->neg)
sign= -sign;
m_neg= calc_time_diff(ltime1, ltime2, -sign, &m_sec, &m_usec);
if (ltime1->neg && (m_sec || m_usec))
m_neg= !m_neg; // Swap sign
}
}
bool to_time(THD *thd, MYSQL_TIME *ltime, uint decimals) const
{
if (m_error)
return true;
to_hh24mmssff(ltime, MYSQL_TIMESTAMP_TIME);
ltime->hour+= static_cast<unsigned>(to_days_abs() * 24);
return adjust_time_range_with_warn(thd, ltime, decimals);
}
bool to_datetime(MYSQL_TIME *ltime) const
{
if (m_error || m_neg)
return true;
to_hh24mmssff(ltime, MYSQL_TIMESTAMP_DATETIME);
return get_date_from_daynr(to_days_abs(),
<ime->year, <ime->month, <ime->day) ||
!ltime->day;
}
long to_days_abs() const { return (long) (m_sec / SECONDS_IN_24H); }
};
class Year
{
protected:
uint m_year;
bool m_truncated;
uint year_precision(const Item *item) const;
public:
Year(): m_year(0), m_truncated(false) { }
Year(longlong value, bool unsigned_flag, uint length);
uint year() const { return m_year; }
uint to_YYYYMMDD() const { return m_year * 10000; }
bool truncated() const { return m_truncated; }
};
class Year_null: public Year, public Null_flag
{
public:
Year_null(const Longlong_null &nr, bool unsigned_flag, uint length)
:Year(nr.is_null() ? 0 : nr.value(), unsigned_flag, length),
Null_flag(nr.is_null())
{ }
};
class VYear: public Year_null
{
public:
VYear(Item *item);
};
class VYear_op: public Year_null
{
public:
VYear_op(Item_func_hybrid_field_type *item);
};
class Double_null: public Null_flag
{
protected:
double m_value;
public:
Double_null(double value, bool is_null)
:Null_flag(is_null), m_value(value)
{ }
double value() const { return m_value; }
};
class Temporal: protected MYSQL_TIME
{
public:
class Status: public MYSQL_TIME_STATUS
{
public:
Status() { my_time_status_init(this); }
};
class Warn: public ErrBuff,
public Status
{
public:
void push_conversion_warnings(THD *thd, bool totally_useless_value,
date_mode_t mode, timestamp_type tstype,
const char *db_name, const char *table_name,
const char *name)
{
const char *typestr= tstype >= 0 ? type_name_by_timestamp_type(tstype) :
mode & (TIME_INTERVAL_hhmmssff | TIME_INTERVAL_DAY) ?
"interval" :
mode & TIME_TIME_ONLY ? "time" : "datetime";
Temporal::push_conversion_warnings(thd, totally_useless_value, warnings,
typestr, db_name, table_name, name,
ptr());
}
};
class Warn_push: public Warn
{
THD * const m_thd;
const char * const m_db_name;
const char * const m_table_name;
const char * const m_name;
const MYSQL_TIME * const m_ltime;
const date_mode_t m_mode;
public:
Warn_push(THD *thd, const char *db_name, const char *table_name,
const char *name, const MYSQL_TIME *ltime, date_mode_t mode)
: m_thd(thd), m_db_name(db_name), m_table_name(table_name), m_name(name),
m_ltime(ltime), m_mode(mode)
{ }
~Warn_push()
{
if (warnings)
push_conversion_warnings(m_thd, m_ltime->time_type < 0,
m_mode, m_ltime->time_type,
m_db_name, m_table_name, m_name);
}
};
public:
static date_conv_mode_t sql_mode_for_dates(THD *thd);
static time_round_mode_t default_round_mode(THD *thd);
class Options: public date_mode_t
{
public:
explicit Options(date_mode_t flags)
:date_mode_t(flags)
{ }
Options(date_conv_mode_t flags, time_round_mode_t round_mode)
:date_mode_t(flags | round_mode)
{
DBUG_ASSERT(ulonglong(flags) <= UINT_MAX32);
}
Options(date_conv_mode_t flags, THD *thd)
:Options(flags, default_round_mode(thd))
{ }
};
bool is_valid_temporal() const
{
DBUG_ASSERT(time_type != MYSQL_TIMESTAMP_ERROR);
return time_type != MYSQL_TIMESTAMP_NONE;
}
static const char *type_name_by_timestamp_type(timestamp_type time_type)
{
switch (time_type) {
case MYSQL_TIMESTAMP_DATE: return "date";
case MYSQL_TIMESTAMP_TIME: return "time";
case MYSQL_TIMESTAMP_DATETIME: // FALLTHROUGH
default:
break;
}
return "datetime";
}
static void push_conversion_warnings(THD *thd, bool totally_useless_value, int warn,
const char *type_name,
const char *db_name,
const char *table_name,