-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathsql_error.h
842 lines (662 loc) · 26.1 KB
/
sql_error.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
/* Copyright (c) 2005, 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 */
#ifndef SQL_ERROR_H
#define SQL_ERROR_H
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include "lex_string.h"
#include "my_alloc.h"
#include "my_compiler.h"
#include "my_inttypes.h"
#include "mysql/components/services/bits/my_err_bits.h"
#include "mysql/components/services/bits/sql_bits.h"
#include "mysql/strings/int2str.h"
#include "mysql/strings/m_ctype.h"
#include "sql/sql_list.h"
#include "sql/sql_plist.h" /* I_P_List */
#include "sql_string.h" /* String */
class THD;
class my_decimal;
struct MYSQL_TIME;
struct MYSQL_TIME_STATUS;
constexpr const size_t WARN_ALLOC_BLOCK_SIZE{2048};
///////////////////////////////////////////////////////////////////////////
/**
Representation of a SQL condition.
A SQL condition can be a completion condition (note, warning),
or an exception condition (error, not found).
*/
class Sql_condition {
public:
/**
Enumeration value describing the severity of the condition.
*/
enum enum_severity_level { SL_NOTE, SL_WARNING, SL_ERROR, SEVERITY_END };
/**
Get the MESSAGE_TEXT of this condition.
@return the message text.
*/
const char *message_text() const { return m_message_text.ptr(); }
/**
Get the MESSAGE_OCTET_LENGTH of this condition.
@return the length in bytes of the message text.
*/
size_t message_octet_length() const { return m_message_text.length(); }
/**
Get the RETURNED_SQLSTATE of this condition.
@return the sql state.
*/
const char *returned_sqlstate() const { return m_returned_sqlstate; }
/**
Get the MYSQL_ERRNO of this condition.
@return the sql error number condition item.
*/
uint mysql_errno() const { return m_mysql_errno; }
/**
Get the severity level of this condition.
@return the severity level condition item.
*/
Sql_condition::enum_severity_level severity() const {
return m_severity_level;
}
private:
/*
The interface of Sql_condition is mostly private, by design,
so that only the following code:
- various raise_error() or raise_warning() methods in class THD,
- the implementation of SIGNAL / RESIGNAL / GET DIAGNOSTICS
- catch / re-throw of SQL conditions in stored procedures (sp_rcontext)
is allowed to create / modify a SQL condition.
Enforcing this policy prevents confusion, since the only public
interface available to the rest of the server implementation
is the interface offered by the THD methods (THD::raise_error()),
which should be used.
*/
friend class THD;
friend class Diagnostics_area;
friend class Sql_cmd_common_signal;
friend class Sql_cmd_signal;
friend class Sql_cmd_resignal;
friend class sp_rcontext;
friend class Condition_information_item;
/**
Constructor.
@param mem_root Memory root to use for the condition items
of this condition.
*/
Sql_condition(MEM_ROOT *mem_root);
/**
Constructor.
@param mem_root Memory root to use for the condition items
of this condition.
@param mysql_errno MYSQL_ERRNO
@param returned_sqlstate RETURNED_SQLSTATE
@param severity Severity level - error, warning or note.
@param message_text MESSAGE_TEXT
*/
Sql_condition(MEM_ROOT *mem_root, uint mysql_errno,
const char *returned_sqlstate,
Sql_condition::enum_severity_level severity,
const char *message_text);
/** Destructor. */
~Sql_condition() = default;
/**
Copy optional condition items attributes.
@param cond the condition to copy.
*/
void copy_opt_attributes(const Sql_condition *cond);
/**
Set the condition message test.
@param message_text Message text, expressed in the character set derived
from the server --lc-messages option
*/
void set_message_text(const char *message_text);
/** Set the RETURNED_SQLSTATE of this condition. */
void set_returned_sqlstate(const char *sqlstate) {
memcpy(m_returned_sqlstate, sqlstate, SQLSTATE_LENGTH);
m_returned_sqlstate[SQLSTATE_LENGTH] = '\0';
}
/** Set the CLASS_ORIGIN and SUBCLASS_ORIGIN of this condition. */
void set_class_origins();
private:
/** SQL CLASS_ORIGIN condition item. */
String m_class_origin;
/** SQL SUBCLASS_ORIGIN condition item. */
String m_subclass_origin;
/** SQL CONSTRAINT_CATALOG condition item. */
String m_constraint_catalog;
/** SQL CONSTRAINT_SCHEMA condition item. */
String m_constraint_schema;
/** SQL CONSTRAINT_NAME condition item. */
String m_constraint_name;
/** SQL CATALOG_NAME condition item. */
String m_catalog_name;
/** SQL SCHEMA_NAME condition item. */
String m_schema_name;
/** SQL TABLE_NAME condition item. */
String m_table_name;
/** SQL COLUMN_NAME condition item. */
String m_column_name;
/** SQL CURSOR_NAME condition item. */
String m_cursor_name;
/** Message text, expressed in the character set implied by --lc-messages. */
String m_message_text;
/** MySQL extension, MYSQL_ERRNO condition item. */
uint m_mysql_errno;
/**
SQL RETURNED_SQLSTATE condition item.
This member is always NUL terminated.
*/
char m_returned_sqlstate[SQLSTATE_LENGTH + 1];
/** Severity (error, warning, note) of this condition. */
Sql_condition::enum_severity_level m_severity_level;
/** Pointers for participating in the list of conditions. */
Sql_condition *m_next_condition;
Sql_condition **m_prev_condition;
/** Memory root to use to hold condition item values. */
MEM_ROOT *m_mem_root;
};
///////////////////////////////////////////////////////////////////////////
size_t err_conv(char *buff, size_t to_length, const char *from,
size_t from_length, const CHARSET_INFO *from_cs);
class ErrConvString {
char err_buffer[MYSQL_ERRMSG_SIZE];
size_t buf_length;
public:
explicit ErrConvString(const String *str) {
buf_length = err_conv(err_buffer, sizeof(err_buffer), str->ptr(),
str->length(), str->charset());
}
ErrConvString(const char *str, size_t length) {
buf_length = err_conv(err_buffer, sizeof(err_buffer), str, length,
&my_charset_latin1);
}
ErrConvString(const char *str, size_t length, const CHARSET_INFO *cs) {
buf_length = err_conv(err_buffer, sizeof(err_buffer), str, length, cs);
}
ErrConvString(longlong nr) {
buf_length = snprintf(err_buffer, sizeof(err_buffer), "%lld", nr);
}
ErrConvString(longlong nr, bool unsigned_flag) {
buf_length = longlong10_to_str(nr, err_buffer, unsigned_flag ? 10 : -10) -
err_buffer;
}
ErrConvString(double nr);
ErrConvString(const my_decimal *nr);
ErrConvString(const MYSQL_TIME *ltime, uint dec);
const char *ptr() const { return err_buffer; }
size_t length() const { return buf_length; }
};
///////////////////////////////////////////////////////////////////////////
/**
Stores status of the currently executed statement.
Cleared at the beginning of the statement, and then
can hold either OK, ERROR, or EOF status.
Can not be assigned twice per statement.
*/
class Diagnostics_area {
/** The type of the counted and doubly linked list of conditions. */
typedef I_P_List<
Sql_condition,
I_P_List_adapter<Sql_condition, &Sql_condition::m_next_condition,
&Sql_condition::m_prev_condition>,
I_P_List_counter, I_P_List_fast_push_back<Sql_condition>>
Sql_condition_list;
public:
/** Const iterator used to iterate through the condition list. */
typedef Sql_condition_list::Const_Iterator Sql_condition_iterator;
enum enum_diagnostics_status {
/** The area is cleared at start of a statement. */
DA_EMPTY = 0,
/** Set whenever one calls my_ok(). */
DA_OK,
/** Set whenever one calls my_eof(). */
DA_EOF,
/** Set whenever one calls my_error() or my_message(). */
DA_ERROR,
/** Set in case of a custom response, such as one from COM_STMT_PREPARE. */
DA_DISABLED
};
Diagnostics_area(bool allow_unlimited_conditions);
~Diagnostics_area();
void set_overwrite_status(bool can_overwrite_status) {
m_can_overwrite_status = can_overwrite_status;
}
bool is_sent() const { return m_is_sent; }
void set_is_sent(bool is_sent) { m_is_sent = is_sent; }
/**
Set OK status -- ends commands that do not return a
result set, e.g. INSERT/UPDATE/DELETE.
@param affected_rows The number of rows affected by the last statement.
@sa Diagnostics_area::m_affected_rows.
@param last_insert_id The value to be returned by LAST_INSERT_ID().
@sa Diagnostics_area::m_last_insert_id.
@param message_text The OK-message text.
*/
void set_ok_status(ulonglong affected_rows, ulonglong last_insert_id,
const char *message_text);
/**
Set EOF status.
@param thd Thread context.
*/
void set_eof_status(THD *thd);
/**
Set ERROR status in the Diagnostics Area. This function should be used to
report fatal errors (such as out-of-memory errors) when no further
processing is possible.
@param thd Thread handle
@param mysql_errno SQL-condition error number
*/
void set_error_status(THD *thd, uint mysql_errno);
/**
Set ERROR status in the Diagnostics Area.
@param mysql_errno SQL-condition error number
@param message_text SQL-condition message
@param returned_sqlstate SQL-condition state
*/
void set_error_status(uint mysql_errno, const char *message_text,
const char *returned_sqlstate);
/**
Mark the Diagnostics Area as 'DISABLED'.
This is used in rare cases when the COM_ command at hand sends a response
in a custom format. One example is COM_STMT_PREPARE.
*/
void disable_status() {
assert(m_status == DA_EMPTY);
m_status = DA_DISABLED;
}
/**
Clear this Diagnostics Area.
Normally called at the end of a statement.
*/
void reset_diagnostics_area();
bool is_set() const { return m_status != DA_EMPTY; }
bool is_error() const { return m_status == DA_ERROR; }
bool is_eof() const { return m_status == DA_EOF; }
bool is_ok() const { return m_status == DA_OK; }
bool is_disabled() const { return m_status == DA_DISABLED; }
enum_diagnostics_status status() const { return m_status; }
const char *message_text() const {
assert(m_status == DA_ERROR || m_status == DA_OK);
return m_message_text;
}
uint message_text_length() const {
assert(m_status == DA_ERROR || m_status == DA_OK);
return m_message_text_length;
}
uint mysql_errno() const {
assert(m_status == DA_ERROR);
return m_mysql_errno;
}
const char *returned_sqlstate() const {
assert(m_status == DA_ERROR);
return m_returned_sqlstate;
}
ulonglong affected_rows() const {
assert(m_status == DA_OK);
return m_affected_rows;
}
ulonglong last_insert_id() const {
assert(m_status == DA_OK);
return m_last_insert_id;
}
uint last_statement_cond_count() const {
assert(m_status == DA_OK || m_status == DA_EOF);
return m_last_statement_cond_count;
}
/** Return the number of conditions raised by the current statement. */
ulong current_statement_cond_count() const {
return m_current_statement_cond_count;
}
/**
Reset between two COM_ commands. Conditions are preserved
between commands, but m_current_statement_cond_count indicates
the number of conditions of this particular statement only.
*/
void reset_statement_cond_count() { m_current_statement_cond_count = 0; }
/**
Checks if the condition list contains SQL-condition with the given message.
@param message_text Message text
@param message_length Length of message_text
@return true if the condition list contains an SQL-condition with the given
message text.
*/
bool has_sql_condition(const char *message_text, size_t message_length) const;
/**
Checks if the condition list contains SQL-condition with the given error
code.
@param sql_errno Error code
@return true if the condition list contains an SQL-condition with the given
error code.
*/
bool has_sql_condition(uint sql_errno) const;
/**
Reset the current condition information stored in the Diagnostics Area.
Clear all conditions, the number of conditions, reset current row counter
to point to the first row.
*/
void reset_condition_info(THD *thd);
/** Return the current counter value. */
ulong current_row_for_condition() const {
return m_current_row_for_condition;
}
/** Increment the current row counter to point at the next row. */
void inc_current_row_for_condition() { m_current_row_for_condition++; }
/** Set the current row counter to point to the given row number. */
void set_current_row_for_condition(ulong rowno) {
m_current_row_for_condition = rowno;
}
/** Reset the current row counter. Start counting from 1. */
void reset_current_row_for_condition() { m_current_row_for_condition = 1; }
/**
The number of errors, or number of rows returned by SHOW ERRORS,
also the value of session variable @@error_count.
*/
ulong error_count(THD *thd) const;
/**
Used for @@warning_count system variable, which prints
the number of rows returned by SHOW WARNINGS.
*/
ulong warn_count(THD *thd) const;
/**
The number of conditions (errors, warnings and notes) in the list.
*/
uint cond_count() const { return m_conditions_list.elements(); }
Sql_condition_iterator sql_conditions() const { return m_conditions_list; }
const char *get_first_condition_message();
/** Make sure there is room for the given number of conditions. */
void reserve_number_of_conditions(THD *thd, uint count);
/**
Add a new SQL-condition to the current list and increment the respective
counters.
@param thd Thread context.
@param mysql_errno SQL-condition error number.
@param returned_sqlstate SQL-condition state.
@param severity SQL-condition severity.
@param message_text SQL-condition message.
@return a pointer to the added SQL-condition.
*/
Sql_condition *push_warning(THD *thd, uint mysql_errno,
const char *returned_sqlstate,
Sql_condition::enum_severity_level severity,
const char *message_text);
/**
Mark current SQL-conditions so that we can later know which
SQL-conditions have been added.
*/
void mark_preexisting_sql_conditions();
/**
Copy SQL-conditions that have been added since
mark_preexisting_sql_conditions() was called.
@param thd Thread context.
@param src_da Diagnostics Area to copy from.
*/
void copy_new_sql_conditions(THD *thd, const Diagnostics_area *src_da);
/**
Copy all SQL-conditions from src_da to this DA.
@param thd Thread context.
@param src_da Diagnostics Area to copy from.
*/
void copy_sql_conditions_from_da(THD *thd, const Diagnostics_area *src_da);
/**
Copy Sql_conditions that are not SL_ERROR from the source
Diagnostics Area to the current Diagnostics Area.
@param thd Thread context.
@param src_da Diagnostics Area to copy from.
*/
void copy_non_errors_from_da(THD *thd, const Diagnostics_area *src_da);
/**
@return SQL-condition, which corresponds to the error state in
Diagnostics Area.
*/
Sql_condition *error_condition() const;
private:
/**
Add a new SQL-condition to the current list and increment the respective
counters.
@param thd Thread context.
@param sql_condition SQL-condition to copy values from.
@return a pointer to the added SQL-condition.
*/
Sql_condition *push_warning(THD *thd, const Sql_condition *sql_condition);
/**
Push the given Diagnostics Area on top of the stack.
"This" will then become the stacked Diagnostics Area.
Conditions present in the new stacked Diagnostics Area
will be copied to the new top Diagnostics Area.
@note This function will not set THD::m_stmt_da.
Use THD::push_diagnostics_area() instead.
@param thd Thread context
@param da Diagnostics Area to be come the top of
the Diagnostics Area stack.
@param copy_conditions
Copy the conditions from the new second Diagnostics Area
to the new first Diagnostics Area, as per SQL standard.
*/
void push_diagnostics_area(THD *thd, Diagnostics_area *da,
bool copy_conditions);
/**
Pop "this" off the Diagnostics Area stack.
@note This function will not set THD::m_stmt_da.
Use THD::pop_diagnostics_area() instead.
@returns The new top of the Diagnostics Area stack.
*/
Diagnostics_area *pop_diagnostics_area();
/**
Returns the Diagnostics Area below the current diagnostics
area on the stack.
*/
const Diagnostics_area *stacked_da() const { return m_stacked_da; }
private:
/** Pointer to the Diagnostics Area below on the stack. */
Diagnostics_area *m_stacked_da;
/** A memory root to allocate conditions */
MEM_ROOT m_condition_root{PSI_INSTRUMENT_ME, WARN_ALLOC_BLOCK_SIZE};
/** List of conditions of all severities. */
Sql_condition_list m_conditions_list;
/** List of conditions present in DA at handler activation. */
List<const Sql_condition> m_preexisting_sql_conditions;
/** True if status information is sent to the client. */
bool m_is_sent;
/** Set to make set_error_status after set_{ok,eof}_status possible. */
bool m_can_overwrite_status;
/** Indicates if push_warning() allows unlimited number of conditions. */
bool m_allow_unlimited_conditions;
enum_diagnostics_status m_status;
private:
/*
This section contains basic attributes of Sql_condition to store
information about error (SQL-condition of error severity) or OK-message.
The attributes are inlined here (instead of using Sql_condition) to be able
to store the information in case of out-of-memory error.
*/
/**
Message buffer. It is used only when DA is in OK or ERROR status.
If DA status is ERROR, it's the MESSAGE_TEXT attribute of SQL-condition.
If DA status is OK, it's the OK-message to be sent.
*/
char m_message_text[MYSQL_ERRMSG_SIZE];
/**
Length, in bytes, of m_message_text.
*/
uint m_message_text_length;
/**
SQL RETURNED_SQLSTATE condition item.
This member is always NUL terminated.
*/
char m_returned_sqlstate[SQLSTATE_LENGTH + 1];
/**
SQL error number. One of ER_ codes from share/errmsg.txt.
Set by set_error_status.
*/
uint m_mysql_errno;
/**
The number of rows affected by the last statement. This is
semantically close to thd->row_count_func, but has a different
life cycle. thd->row_count_func stores the value returned by
function ROW_COUNT() and is cleared only by statements that
update its value, such as INSERT, UPDATE, DELETE and few others.
This member is cleared at the beginning of the next statement.
We could possibly merge the two, but life cycle of thd->row_count_func
can not be changed.
*/
ulonglong m_affected_rows;
/**
Similarly to the previous member, this is a replacement of
thd->first_successful_insert_id_in_prev_stmt, which is used
to implement LAST_INSERT_ID().
*/
ulonglong m_last_insert_id;
/**
Number of conditions of this last statement. May differ from
the number of conditions returned by SHOW WARNINGS e.g. in case
the statement doesn't clear the conditions, and doesn't generate
them.
*/
uint m_last_statement_cond_count;
/**
The number of conditions of the current statement. m_conditions_list
life cycle differs from statement life cycle -- it may span
multiple statements. In that case we get
m_current_statement_cond_count 0, whereas m_conditions_list is not empty.
*/
uint m_current_statement_cond_count;
/** A break down of the number of conditions per severity (level). */
uint m_current_statement_cond_count_by_qb[(uint)Sql_condition::SEVERITY_END];
/**
Row counter, to print in errors and warnings. Not increased in
create_sort_index(); may differ from examined_row_count.
*/
ulong m_current_row_for_condition;
/** Save @@error_count before pre-clearing the DA. */
ulong m_saved_error_count;
/** Save @@warning_count before pre-clearing the DA. */
ulong m_saved_warn_count;
friend class THD;
};
///////////////////////////////////////////////////////////////////////////
void push_warning(THD *thd, Sql_condition::enum_severity_level severity,
uint code, const char *message_text);
/**
Convenience function for sending a warning with level SL_WARNING and no
arguments to the message.
@param thd The session to send the warning to.
@param code The warning number.
*/
void push_warning(THD *thd, uint code);
/*
Note that this MY_ATTRIBUTE check cannot detect number/type mismatch
since the format string is not known at compile time.
It can however detect if push_warning_printf() is used without any
printf arguments. In such cases, use push_warning() instead.
*/
void push_warning_printf(THD *thd, Sql_condition::enum_severity_level severity,
uint code, const char *format, ...)
MY_ATTRIBUTE((format(printf, 4, 5)));
/**
Generates a warning that a feature is deprecated.
Using it as
push_deprecated_warn(thd, "BAD", "'GOOD'");
Will result in a warning:
"The syntax 'BAD' is deprecated and will be removed in a
future release. Please use 'GOOD' instead"
If a function is deprecated, it should implement
Item_func::is_deprecated() to return true to prevent the
usage of the function in the generated column expression.
@param thd Thread context. If NULL, warning is written
to the error log, otherwise the warning is
sent to the client.
@param old_syntax Deprecated syntax.
@param new_syntax Replacement syntax.
*/
void push_deprecated_warn(THD *thd, const char *old_syntax,
const char *new_syntax);
/**
Generates a warning that a feature is deprecated.
Using it as
push_deprecated_warn_no_replacement(thd, "old");
Will result in a warning:
"The syntax 'old' is deprecated and will be removed in a
future release.
If a function is deprecated, it should implement
Item_func::is_deprecated() to return true to prevent the
usage of the function in the generated column expression.
@param thd Thread context. If NULL, warning is written
to the error log, otherwise the warning is
sent to the client.
@param old_syntax Deprecated syntax.
*/
void push_deprecated_warn_no_replacement(THD *thd, const char *old_syntax);
bool mysqld_show_warnings(THD *thd, ulong levels_to_show);
size_t convert_error_message(char *to, size_t to_length,
const CHARSET_INFO *to_cs, const char *from,
size_t from_length, const CHARSET_INFO *from_cs,
uint *errors);
extern const LEX_CSTRING warning_level_names[];
bool is_sqlstate_valid(const LEX_STRING *sqlstate);
/**
Checks if the specified SQL-state-string defines COMPLETION condition.
This function assumes that the given string contains a valid SQL-state.
@param s the condition SQLSTATE.
@retval true if the given string defines COMPLETION condition.
@retval false otherwise.
*/
inline bool is_sqlstate_completion(const char *s) {
return s[0] == '0' && s[1] == '0';
}
/**
Checks if the specified SQL-state-string defines WARNING condition.
This function assumes that the given string contains a valid SQL-state.
@param s the condition SQLSTATE.
@retval true if the given string defines WARNING condition.
@retval false otherwise.
*/
inline bool is_sqlstate_warning(const char *s) {
return s[0] == '0' && s[1] == '1';
}
/**
Checks if the specified SQL-state-string defines NOT FOUND condition.
This function assumes that the given string contains a valid SQL-state.
@param s the condition SQLSTATE.
@retval true if the given string defines NOT FOUND condition.
@retval false otherwise.
*/
inline bool is_sqlstate_not_found(const char *s) {
return s[0] == '0' && s[1] == '2';
}
/**
Checks if the specified SQL-state-string defines EXCEPTION condition.
This function assumes that the given string contains a valid SQL-state.
@param s the condition SQLSTATE.
@retval true if the given string defines EXCEPTION condition.
@retval false otherwise.
*/
inline bool is_sqlstate_exception(const char *s) {
return s[0] != '0' || s[1] > '2';
}
void warn_on_deprecated_charset(THD *thd, const CHARSET_INFO *cs,
const char *alias,
const char *option = nullptr);
void warn_on_deprecated_collation(THD *thd, const CHARSET_INFO *collation,
const char *option = nullptr);
void check_deprecated_datetime_format(THD *thd, const CHARSET_INFO *cs,
MYSQL_TIME_STATUS &status);
#endif // SQL_ERROR_H