diff options
author | unknown <serg@serg.mylan> | 2004-11-24 17:22:29 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-24 17:22:29 +0100 |
commit | 0052dc8210b68a83736f547abf41f76a977e2826 (patch) | |
tree | a58c2b990a3c6e8f7ba2f923989fbb72534bfd38 /sql/protocol.cc | |
parent | 85593e9079926a09ad42ec4572a691092db0033b (diff) | |
download | mariadb-git-0052dc8210b68a83736f547abf41f76a977e2826.tar.gz |
send_warning removed
Diffstat (limited to 'sql/protocol.cc')
-rw-r--r-- | sql/protocol.cc | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sql/protocol.cc b/sql/protocol.cc index 88be2710422..11a915ec151 100644 --- a/sql/protocol.cc +++ b/sql/protocol.cc @@ -131,36 +131,6 @@ void net_send_error(THD *thd, uint sql_errno, const char *err) DBUG_VOID_RETURN; } - -/* - Send a warning to the end user - - SYNOPSIS - send_warning() - thd Thread handler - sql_errno Warning number (error message) - err Error string. If not set, use ER(sql_errno) - - DESCRIPTION - Register the warning so that the user can get it with mysql_warnings() - Send an ok (+ warning count) to the end user. -*/ - -void send_warning(THD *thd, uint sql_errno, const char *err) -{ - DBUG_ENTER("send_warning"); - if (thd->spcont && - thd->spcont->find_handler(sql_errno, MYSQL_ERROR::WARN_LEVEL_WARN)) - { - DBUG_VOID_RETURN; - } - push_warning(thd, MYSQL_ERROR::WARN_LEVEL_WARN, sql_errno, - err ? err : ER(sql_errno)); - send_ok(thd); - DBUG_VOID_RETURN; -} - - /* Write error package and flush to client It's a little too low level, but I don't want to use another buffer for |