1
/* Copyright (C) 1995-2002 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
/**********************************************************************
17
This file contains the implementation of error and warnings related
19
- Whenever an error or warning occurred, it pushes it to a warning list
20
that the user can retrieve with SHOW WARNINGS or SHOW ERRORS.
22
- For each statement, we return the number of warnings generated from this
23
command. Note that this can be different from @@warning_count as
24
we reset the warning list only for questions that uses a table.
25
This is done to allow on to do:
27
SELECT @@warning_count;
29
(If we would reset after each command, we could not retrieve the number
32
- When client requests the information using SHOW command, then
33
server processes from this list and returns back in the form of
38
SHOW [COUNT(*)] ERRORS [LIMIT [offset,] rows]
39
SHOW [COUNT(*)] WARNINGS [LIMIT [offset,] rows]
40
SELECT @@warning_count, @@error_count;
42
***********************************************************************/
44
#include "mysql_priv.h"
47
Store a new message in an error object
49
This is used to in group_concat() to register how many warnings we actually
50
got after the query has been executed.
53
void MYSQL_ERROR::set_msg(THD *thd, const char *msg_arg)
55
msg= strdup_root(&thd->warn_root, msg_arg);
60
Reset all warnings for the thread
65
force Reset warnings even if it has been done before
68
Don't reset warnings if this has already been called for this query.
69
This may happen if one gets a warning during the parsing stage,
70
in which case push_warnings() has already called this function.
73
void mysql_reset_errors(THD *thd, bool force)
75
DBUG_ENTER("mysql_reset_errors");
76
if (thd->query_id != thd->warn_id || force)
78
thd->warn_id= thd->query_id;
79
free_root(&thd->warn_root,MYF(0));
80
bzero((char*) thd->warn_count, sizeof(thd->warn_count));
82
thd->total_warn_count= 0;
83
thd->warn_list.empty();
84
thd->row_count= 1; // by default point to row 1
91
Push the warning/error to error list if there is still room in the list
96
level Severity of warning (note, warning, error ...)
98
msg Clear error message
101
pointer on MYSQL_ERROR object
104
MYSQL_ERROR *push_warning(THD *thd, MYSQL_ERROR::enum_warning_level level,
105
uint code, const char *msg)
108
DBUG_ENTER("push_warning");
109
DBUG_PRINT("enter", ("code: %d, msg: %s", code, msg));
111
if (level == MYSQL_ERROR::WARN_LEVEL_NOTE &&
112
!(thd->options & OPTION_SQL_NOTES))
115
if (thd->query_id != thd->warn_id)
116
mysql_reset_errors(thd, 0);
119
/* Abort if we are using strict mode and we are not using IGNORE */
120
if ((int) level >= (int) MYSQL_ERROR::WARN_LEVEL_WARN &&
121
thd->really_abort_on_warning())
123
/* Avoid my_message() calling push_warning */
124
bool no_warnings_for_error= thd->no_warnings_for_error;
126
thd->no_warnings_for_error= 1;
128
thd->killed= THD::KILL_BAD_DATA;
129
my_message(code, msg, MYF(0));
131
thd->no_warnings_for_error= no_warnings_for_error;
132
/* Store error in error list (as my_message() didn't do it) */
133
level= MYSQL_ERROR::WARN_LEVEL_ERROR;
136
if (thd->handle_error(code, msg, level))
139
if (thd->warn_list.elements < thd->variables.max_error_count)
141
/* We have to use warn_root, as mem_root is freed after each query */
142
if ((err= new (&thd->warn_root) MYSQL_ERROR(thd, code, level, msg)))
143
thd->warn_list.push_back(err, &thd->warn_root);
145
thd->warn_count[(uint) level]++;
146
thd->total_warn_count++;
151
Push the warning/error to error list if there is still room in the list
154
push_warning_printf()
156
level Severity of warning (note, warning, error ...)
158
msg Clear error message
161
void push_warning_printf(THD *thd, MYSQL_ERROR::enum_warning_level level,
162
uint code, const char *format, ...)
165
char warning[ERRMSGSIZE+20];
166
DBUG_ENTER("push_warning_printf");
167
DBUG_PRINT("enter",("warning: %u", code));
169
va_start(args,format);
170
my_vsnprintf(warning, sizeof(warning), format, args);
172
push_warning(thd, level, code, warning);
178
Send all notes, errors or warnings to the client in a result set
181
mysqld_show_warnings()
183
levels_to_show Bitmap for which levels to show
186
Takes into account the current LIMIT
190
TRUE Error sending data to client
193
const LEX_STRING warning_level_names[]=
195
{ C_STRING_WITH_LEN("Note") },
196
{ C_STRING_WITH_LEN("Warning") },
197
{ C_STRING_WITH_LEN("Error") },
198
{ C_STRING_WITH_LEN("?") }
201
bool mysqld_show_warnings(THD *thd, ulong levels_to_show)
203
List<Item> field_list;
204
DBUG_ENTER("mysqld_show_warnings");
206
field_list.push_back(new Item_empty_string("Level", 7));
207
field_list.push_back(new Item_return_int("Code",4, MYSQL_TYPE_LONG));
208
field_list.push_back(new Item_empty_string("Message",MYSQL_ERRMSG_SIZE));
210
if (thd->protocol->send_fields(&field_list,
211
Protocol::SEND_NUM_ROWS | Protocol::SEND_EOF))
215
SELECT_LEX *sel= &thd->lex->select_lex;
216
SELECT_LEX_UNIT *unit= &thd->lex->unit;
218
Protocol *protocol=thd->protocol;
220
unit->set_limit(sel);
222
List_iterator_fast<MYSQL_ERROR> it(thd->warn_list);
225
/* Skip levels that the user is not interested in */
226
if (!(levels_to_show & ((ulong) 1 << err->level)))
228
if (++idx <= unit->offset_limit_cnt)
230
if (idx > unit->select_limit_cnt)
232
protocol->prepare_for_resend();
233
protocol->store(warning_level_names[err->level].str,
234
warning_level_names[err->level].length, system_charset_info);
235
protocol->store((uint32) err->code);
236
protocol->store(err->msg, strlen(err->msg), system_charset_info);
237
if (protocol->write())